mirror of
https://github.com/ziglang/zig.git
synced 2026-01-24 08:15:23 +00:00
7 lines
65 B
C
7 lines
65 B
C
int i;
|
|
int j;
|
|
|
|
int add_to_i_and_j(int x) {
|
|
return x + i + j;
|
|
}
|