fork download
  1. procedure main()
  2. hello() # OK
  3. end
  4.  
  5. procedure hello()
  6. write("Hello World!")
  7. end
Success #stdin #stdout 0s 4320KB
stdin
Standard input is empty
stdout
Hello World!