fork(3) download
  1. def func(t):
  2. return 2 + 3
  3.  
  4. t = 7
  5. t = func(t)
  6. print(t)
  7.  
  8. #https://pt.stackoverflow.com/q/226738/101
Success #stdin #stdout 0.02s 27720KB
stdin
Standard input is empty
stdout
5