Obliq    up
  similar languages: Modula   Oberon   Leda   Pascal   Phantom   PL/0   PL/0E   YAFL  
 


 Hello World   Michael Neumann
(* Hello World! *)

sys_printText("Hello World\n");
Prints "Hello World" onto the screen.


 Squares   Michael Neumann
for i=1 to 10 do
   sys_printText( text_fromInt(i*i) & " " );
end;
Outputs the squares from 1 to 10.