q/examples/hello/hello.q

14 lines
No EOL
144 B
Text

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