code wiki / (root) / nx_byteload_debug.nx

nx_byteload_debug.nx source

↩ module page · 7 lines · 142 B

1import "nx_syscalls.nx" 2 3func main() -> i64 { 4 let s: *u8 = "GET" as *u8 5 let b: i64 = s[0] as i64 6 return b // expect 0x47 = 71 7}