Files
nub-lang/examples/program/main.nub
nub31 e512650440 ...
2026-02-27 21:29:28 +01:00

17 lines
142 B
Plaintext

module main
struct Pos {
x: i32
y: i32
}
func main(): i32
{
test({ x = 23 y = 23 })
return 1
}
func test(x: Pos): void
{
}