code wiki / (root) / _offc_bisect_string_literal.nx

_offc_bisect_string_literal.nx source

↩ module page · 8 lines · 208 B

1// _offc_bisect_string_literal.nx -- Bar-3 feature bisect: string_literal_global 2 3import "syscalls.nx" 4func main() -> i64 { 5 let msg: *u8 = "hello\n" as *u8 6 sys_write(1, msg, 6) 7 return 0 8}