Skip to content

Instantly share code, notes, and snippets.

View mcasey8540's full-sized avatar

Mike Casey mcasey8540

View GitHub Profile
@mcasey8540
mcasey8540 / card.rb
Created October 24, 2012 23:41 — forked from dbc-challenges/card.rb
FlashCardinator
# card.rb
class Card
attr_reader :term, :definition
def initialize(term, definition)
@term = term
@definition = definition
end
@mcasey8540
mcasey8540 / card.rb
Created October 24, 2012 23:38 — forked from dbc-challenges/card.rb
FlashCardinator
# Your code here
# Put your answers here!