Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1.  
  2. class Sample
  3. def hello
  4. puts "Hello Ruby!"
  5. end
  6. end
  7.  
  8. # Now using above class to create objects
  9. object = Sample. new
  10. object.hello
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement