fork download
  1. BEGIN {
  2. puts "1st"
  3. }
  4.  
  5. puts "no run"
  6.  
  7. BEGIN {
  8. puts "2nd"
  9. }
  10.  
  11. puts "no run!"
  12.  
  13. BEGIN {
  14. puts "3rd"
  15. exit
  16. }
Success #stdin #stdout 0s 5832KB
stdin
Standard input is empty
stdout
1st
2nd
3rd