8 lines
76 B
Text
8 lines
76 B
Text
|
int foo (int a, int b) {
|
||
|
return a + b;
|
||
|
}
|
||
|
|
||
|
void main () {
|
||
|
foo(42);
|
||
|
}
|