Guest User

Untitled

a guest
Mar 13th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def Book < DataMapper::Model
  2. property [:title, :author], :string
  3. end
  4.  
  5. book = Book.new(:title => "1984", :author => "Orson Welles")
  6. book.title #=> "1984"
  7. book.author #=> "Orson Welles"
Add Comment
Please, Sign In to add comment