Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.15 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. module Vacation
  2.  
  3.   class Person
  4.     def to_estudy
  5.       p "Ruby and Ruby on Rails"
  6.     end
  7.   end
  8.  
  9.   norba = Person.new
  10.   norba.to_estudy
  11. end