| Obliq |
| ähnliche Sprachen: | Modula Oberon Leda Pascal Phantom PL/0 PL/0E YAFL | |
| Hello World | Michael Neumann |
(* Hello World! *) sys_printText("Hello World\n"); |
| Gibt "Hello World" auf dem Bildschirm
aus. |
| Squares | Michael Neumann |
for i=1 to 10 do sys_printText( text_fromInt(i*i) & " " ); end; |
| Gibt die Quadrate von 1 bis 10
aus. |