Skip to content

Instantly share code, notes, and snippets.

View scottchiang's full-sized avatar

Scott Chiang scottchiang

View GitHub Profile
rvm rubies
ruby-1.8.7-p370 [ i686 ]
ruby-1.9.2-p320 [ x86_64 ]
=* ruby-1.9.3-p194 [ x86_64 ]
# => - current
# =* - current && default
# * - default
@scottchiang
scottchiang / flashcardinator.rb
Created October 25, 2012 17:48 — forked from dbc-challenges/card.rb
FlashCardinator
class Flashcard
attr_accessor :word, :definition
def initialize(word, definition)
@word = word
@definition = definition
end
end
class CardStack