Files
nub-lang/examples/program/main.nub
2026-02-27 22:20:32 +01:00

10 lines
130 B
Plaintext

module main
func main(): i32
{
core::print("Hello, world")
let ptr = core::malloc(64)
core::free(ptr)
return 0
}