q/examples/hello/hello.q

17 lines
No EOL
172 B
Text

main() {
hello()
}
hello() {
write := 1
stdout := 1
address := 4194304
length := 0
address += 1
length += 3
loop {
syscall(write, stdout, address, length)
}
}