Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created August 31, 2011 16:30
Show Gist options
  • Save eqdw/1183964 to your computer and use it in GitHub Desktop.
Save eqdw/1183964 to your computer and use it in GitHub Desktop.
class Chocolate
def white?; ...; end;
def caffeinated?; ...; end;
def imported?; ...; end;
end
#main script
@chocolate = Chocolate.new
### THIS PART ###
case @chocolate
when .white?
...
when .caffeinated?
...
when .imported?
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment