CellaA minimalistic systems programming language
Hello World:
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 }
Cella1 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 }