Created
September 10, 2011 20:03
-
-
Save walm/1208711 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Beans | |
from : [ 'Central America', 'South America', 'East Africa' ] | |
brand : 'Gevalia' | |
name : 'Ebony' | |
class Coffee extends Beans | |
sugar : no | |
milk : no | |
people = [ 'Andreas', 'Sofia' ] | |
serve = for person in people | |
cup = new Coffee | |
cup.sugar = yes unless person is 'Sofia' | |
cup.milk = yes if person is 'Sofia' | |
cup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment