c-compiler/test.txt

9 lines
86 B
Text
Raw Normal View History

2024-11-15 19:37:01 +13:00
i32 putchar(i32 char);
void sayhi() {
putchar(72);
putchar(105);
}
sayhi();