code wiki / (root) / _offc_outbuf_b.nx

_offc_outbuf_b.nx source

↩ module page · 8 lines · 190 B

1// outbuf_b: out_new + write/read o.pos. 2import "syscalls.nx" 3import "outbuf.nx" 4func main() -> i64 { 5 let o: *OutBuf = out_new(64) 6 o.pos = 7 7 return o.pos // expect 7 8}