fork(1) download
  1. def display(a):
  2. print a
  3.  
  4. print "hello world"
  5. display(5)
Success #stdin #stdout 0.01s 23304KB
stdin
Standard input is empty
stdout
hello world
5