fork download
  1. class S
  2. end
  3.  
  4. class C < S
  5. def func()
  6. print("Hello, world!\n")
  7. end
  8. end
  9.  
  10. o = S.new
  11. o.func()
Runtime error #stdin #stdout 0s 4760KB
stdin
Standard input is empty
stdout
Standard output is empty