Sisal ![]() |
Hello World | Michael Neumann |
% % Hello World!!! % define main function main(returns array [Character]) "Hello World" end function |
Gibt "Hello World" auf dem Bildschirm
aus. |
Squares | Michael Neumann |
define main function main(returns array [Integer]) for i in 1, 10 x := i * i returns array of x end for end function |
Gibt die Quadrate von 1 bis 10
aus. |