functions_1.gm 90 B

123456
  1. myMultiply = function( x, y ) { return x * y; };
  2. a = myMultiply( 100, 2 );
  3. print( a );