Skip to content

Instantly share code, notes, and snippets.

@kyrylo
Created January 13, 2012 00:01
Show Gist options
  • Save kyrylo/1603917 to your computer and use it in GitHub Desktop.
Save kyrylo/1603917 to your computer and use it in GitHub Desktop.
create_suit = lambda { |arg|
Class.new do
define_method :black? do arg end
end
}
Heart = create_suit.call(false)
Diamond = create_suit.call(false)
Club = create_suit.call(true)
Spade = create_suit.call(true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment