fork download
  1. def main()
  2. hello() # OK
  3. end
  4.  
  5. def hello()
  6. puts 'Hello World!'
  7. end
  8.  
  9. main()
Success #stdin #stdout 0s 6240KB
stdin
Standard input is empty
stdout
Hello World!