Created
September 7, 2009 04:19
-
-
Save m3talsmith/182144 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
function give_me_the_world() { | |
return "You have the world"; | |
} | |
var i_rule_you = give_me_the_world(); | |
print(i_rule_you); | |
var fruit = {color: "orange", taste: "sticky"} | |
print(fruit.color); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment