Created
October 24, 2011 14:33
-
-
Save kayluhb/1309171 to your computer and use it in GitHub Desktop.
eggnog code
This file contains 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
var eggYolks = 12, | |
lbsSugar = 1, | |
cupsRum = 2, | |
cupsBourbon = 2, | |
quartsWhippingCream = 2, | |
eggWhites = 12, | |
nutmeg = "sprinkle"; | |
var eggNog = [eggYolks, lbsSugar, cupsRum, | |
cupsBourbon, quartsWhippingCream, | |
eggWhites, nutmeg]; |
This file contains 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
egg_yolks = 12 | |
lbs_sugar = 1 | |
cups_rum = 2 | |
cups_bourbon = 2 | |
quarts_whipping_cream = 2 | |
egg_whites = 12 | |
nutmeg = "sprinkle" | |
@egg_nog = [egg_yolks, lbs_sugar, cups_rum, | |
cups_bourbon, quarts_whipping_cream, | |
egg_whites, nutmeg].join() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment