E ![]() |
http://www.erights.org |
Hello World | Michael Neumann |
# Hello World in E // by Michael Neumann println( "Hello World" ) |
Prints "Hello World" onto the
screen. |
Squares | Michael Neumann |
for i in 1..10 { print( i*i ) print( " " ) } |
Outputs the squares from 1 to
10. |