mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +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;
|
|
}
|