mirror of
https://github.com/ziglang/zig.git
synced 2026-01-27 01:35:23 +00:00
8 lines
74 B
C
8 lines
74 B
C
#include <stdio.h>
|
|
|
|
int getFoo();
|
|
|
|
int main() {
|
|
return getFoo() - 42;
|
|
}
|