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

6 lines
83 B
Plaintext

import "libc";
main :: proc(): int {
printf("hello world!\n");
return 0;
}