fork download
  1. def f1(a, b):
  2. print('call')
  3. return a
  4.  
  5. def main():
  6. f1(f1(1, 2), f1(2, 3))
  7.  
  8. main()
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
call
call
call