fork download
  1. class A
  2. def method_missing *a
  3. a.join ' '
  4. end
  5. def bare
  6. what the fuck is wrong with this language?
  7. end
  8. end
  9.  
  10. puts A.new.bare
Success #stdin #stdout 0.02s 7412KB
stdin
Standard input is empty
stdout
what the fuck is wrong with this language?