Files
nub-lang/examples/hello-world/main.nub
2025-10-22 13:29:24 +02:00

10 lines
189 B
Plaintext

module "main"
extern "puts" func puts(text: cstring)
extern "main" func main(argc: i64, argv: [?]cstring): i64
{
defer puts("Bye cruel world!")
puts("Hello world!")
return 0
}