#import int main() addN := (int n) int adder(int x) return x + n return adder add2 := addN(2) printf( "Result = %d\n", add2(7) ) return 0