2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/x10/at-example.x10
2014-03-29 14:20:26 +01:00

8 lines
No EOL
119 B
Text

at (Place(1)) { ... }
val a:Int = 42;
at (here.next()) {
Console.OUT.println(here);
Console.OUT.println(a);
}