int foo (int a, int b) { return a + b; } void main () { foo(42); # Error on line 6 col 8: Expected 2 arguments but given 1. }