Skip to content

Instantly share code, notes, and snippets.

Created August 5, 2008 04:16
Show Gist options
  • Save anonymous/4026 to your computer and use it in GitHub Desktop.
Save anonymous/4026 to your computer and use it in GitHub Desktop.
>>> var on_your_mom = false;
>>> on_your_mom
false
>>> function at_your_house() { on_your_mom = true; }
>>> at_your_house();
>>> on_your_mom
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment