This commit is contained in:
nub31
2025-06-21 18:16:25 +02:00
parent eb5d78f064
commit 88d85c6849
2 changed files with 28 additions and 6 deletions

View File

@@ -27,5 +27,13 @@ export func main(args: []cstring): i64 {
y("proxy")
func(){ c::puts("anon") }()
let z: func()
z = func() { c::puts("anon variable") }
z()
return 0
}