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/example/src/main.nub
nub31 ae534a7a54 ...
2025-07-02 23:39:44 +02:00

19 lines
173 B
Plaintext

namespace main
struct Human
{
name: cstring
age: i64
}
export func main(args: []cstring): i64
{
let x: cstring
x = "john"
c::puts(x)
return 0
}