| Leda |
| ähnliche Sprachen: | Modula Oberon Obliq Pascal Phantom PL/0 PL/0E YAFL | |
| Hello World | Michael Neumann |
{ Hello World in Leda } include "std.led"; begin print("Hello World"); end; |
| Gibt "Hello World" auf dem Bildschirm
aus. |
| Squares | Michael Neumann |
include "std.led"; var i:integer; begin for i:=1 to 10 do begin print("" + i*i + " "); end; end; |
| Gibt die Quadrate von 1 bis 10
aus. |