Files
bits-runner-builder/samples/hello.brc
Rafał Grodziński 870ecce8e4 Almost hello world
2025-07-08 22:49:04 +09:00

12 lines
205 B
Plaintext

@extern putchar fun: character sint32 -> sint32
main fun -> sint32
text data<sint32> <- "Hello string!\n"
rep i sint32 <- 0, i < 14:
putchar(text[i])
i <- i + 1
;
ret 0
;