fork(1) download
  1. def print_message():
  2. print "This is my very special script!"
  3.  
  4. if __name__ == "__main__":
  5. print_message()
  6.  
Success #stdin #stdout 0.01s 7728KB
stdin
Standard input is empty
stdout
This is my very special script!