Files
mysysy/testdata/h_functional/05_param_name.sy

8 lines
65 B
Plaintext

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