mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
11 lines
173 B
Zig
11 lines
173 B
Zig
|
const hello_world_in_c =
|
||
|
\\#include <stdio.h>
|
||
|
\\
|
||
|
\\int main(int argc, char **argv) {
|
||
|
\\ printf("hello world\n");
|
||
|
\\ return 0;
|
||
|
\\}
|
||
|
;
|
||
|
|
||
|
// syntax
|