10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
main := fn(): uint {
|
|
Map := fn(I: type, F: type): type return struct {}
|
|
|
|
foo := fn(vl: int, $oo: type): Map(u8, oo) return .()
|
|
|
|
_ = foo(0, u8)
|
|
|
|
return 0
|
|
}
|