Advertisement
konalisp

swag2.rb

May 28th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class Swag
  2.     attr_accessor :boys, :men
  3.    
  4.     def initialize
  5.         @boys = "swag"
  6.         @men = "class"
  7.     end
  8. end
  9.  
  10. fedora = Swag.new
  11.  
  12. puts "#{fedora.boys} is for boys, #{fedora.men} is for men."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement