fork download
  1.  
  2. def fun_a(x, y):
  3. return x + y
  4.  
  5. def fun_b(x, y):
  6. z = fun_a(x,y)
  7. return "test", z
  8.  
  9. fun_b(2, 3)
  10.  
Success #stdin #stdout 0s 47720KB
stdin
Standard input is empty
stdout
Standard output is empty