fork download
  1. foo = 1
  2.  
  3. def func(val):
  4. return val
  5.  
  6. foo = func(2)
  7.  
  8. print(foo)
Success #stdin #stdout 0.02s 8696KB
stdin
Standard input is empty
stdout
2