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