deimos-lang/examples/hello.dm

6 lines
74 B
Plaintext

fn println() end
fn main()
let x = "Hello, World!"
println(x)
end