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