Files
lib_compiler/examples/add_printf_format_check/main.lc
2024-04-13 15:29:53 +02:00

6 lines
98 B
Plaintext

import "libc";
main :: proc(): int {
printf("testing %d %s %d\n", 32, "str");
return 0;
}