Files
nub-lang/examples/playgroud/main.nub
nub31 36622755a9 ...
2025-11-03 19:54:41 +01:00

21 lines
246 B
Plaintext

module main
extern "puts" func puts(text: ^i8)
struct Test
{
field: u32
}
extern "main" func main(argc: i64, argv: [?]^i8)
{
let x: ^i8 = "test"
// test
^x^ = "uwu"
puts(x)
}
func test(test: Test): Test
{
return test
}