Files
nub-lang/examples/playgroud/main.nub
nub31 17e754fc6e ...
2025-11-05 16:14:08 +01:00

13 lines
180 B
Plaintext

module main
extern "puts" func puts(text: ^i8)
struct Test {
test: ^i8 = "test1"
}
extern "main" func main(argc: i64, argv: [?]^i8)
{
let x: Test = {}
puts(x.test)
}