mirror of
https://github.com/ziglang/zig.git
synced 2026-01-27 01:35:23 +00:00
9 lines
84 B
C
9 lines
84 B
C
#include <stdio.h>
|
|
|
|
int foo();
|
|
|
|
int main() {
|
|
printf("%d\n", foo());
|
|
return 0;
|
|
}
|