fork(6) download
  1. identification division.
  2. program-id. ideone.
  3.  
  4. procedure division.
  5. display "hello"
  6. perform s
  7. goback
  8. .
  9.  
  10. s section.
  11. display "world"
  12. .
  13.  
Success #stdin #stdout 0s 5340KB
stdin
Standard input is empty
stdout
hello
world