This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/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
}