SysYTestcases/functional_h_2022/05_param_name.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

8 lines
65 B
Plaintext
Executable File

int f(int f) {
return f * 2;
}
int main() {
return f(10);
}