mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-30 06:42:48 +03: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;
|
|
}
|