mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
6 lines
65 B
C
6 lines
65 B
C
int i;
|
|
int j;
|
|
|
|
int add_to_i_and_j(int x) {
|
|
return x + i + j;
|
|
}
|