fork(1) download
  1. class Nested
  2. def [](s)
  3. puts s.to_s
  4. return self
  5. end
  6. end
  7.  
  8. x = Nested.new
  9. x[:Hello][:World]
Success #stdin #stdout 0.01s 7408KB
stdin
Standard input is empty
stdout
Hello
World