7 lines
69 B
Text
7 lines
69 B
Text
int foo (int a) {
|
|
return a;
|
|
}
|
|
|
|
void main () {
|
|
foo(13, 12);
|
|
}
|