fork download
  1. foo = lambda { |x| puts x }
  2.  
  3. foo.call('Hello, World!')
  4. foo['You can index me too!']
Success #stdin #stdout 0s 4760KB
stdin
Standard input is empty
stdout
Hello, World!
You can index me too!