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
nub31 e2da6cccff ...
2025-10-22 11:22:06 +02:00

10 lines
175 B
Plaintext

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