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