Cella
A minimalistic systems programming language


Hello World:
Copy Code
  1
2
3
4
5
6
7
8
9
mod helloWorld

use std.io.Console

main: fun(args: array[string]) -> i32 !io
{
	Console.println("Hello, World!")
	ret 0
}