2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 14:28:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/x10/at-example.x10

8 lines
119 B
Text
Raw Normal View History

2014-03-29 14:20:26 +01:00
at (Place(1)) { ... }
val a:Int = 42;
at (here.next()) {
Console.OUT.println(here);
Console.OUT.println(a);
}