Files
bits-runner-builder/samples/hello.brc
Rafał Grodziński 5db6703d48 Read array elements
2025-07-09 17:47:59 +09:00

12 lines
215 B
Plaintext

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