c-compiler/test.txt

14 lines
160 B
Text
Raw Normal View History

2024-11-15 19:37:01 +13:00
i32 putchar(i32 char);
2024-11-16 21:02:09 +13:00
i32 sayhi(i32 char) {
2024-11-15 19:37:01 +13:00
putchar(72);
putchar(105);
2024-11-16 21:02:09 +13:00
putchar(char);
return 5;
2024-11-15 19:37:01 +13:00
}
2024-11-16 21:02:09 +13:00
void main() {
sayhi(74);
return;
}