PL/0E ![]() |
ähnliche Sprachen: | Modula Oberon Obliq Leda Pascal Phantom PL/0 YAFL | |
Hello World | Michael Neumann |
PROGRAM HelloWorld; BEGIN WRITELN('Hello World'); END. |
Gibt "Hello World" auf dem Bildschirm
aus. |
Squares | Michael Neumann |
PROGRAM HelloWorld; VAR i : LONGINT; BEGIN i = 1; REPEAT WRITE(i*i,' '); inc(i); UNTIL i>10; END. |
Gibt die Quadrate von 1 bis 10
aus. |