Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def sub(a,b)
  2.   a - b
  3. end
  4.  
  5. def add(a, b)
  6.   a + b
  7. end
  8.  
  9. def method_missing(sym, *args, &block)
  10.   puts("hey now!")
  11. end