Skip to content

Instantly share code, notes, and snippets.

@subtleGradient
Created June 27, 2011 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subtleGradient/1049425 to your computer and use it in GitHub Desktop.
Save subtleGradient/1049425 to your computer and use it in GitHub Desktop.
(function Earth(){
var FootBall = new Game('the one you play with your feet with all the running and stuff');
var Canada
(function USA(soccer){
var FootBall = new Game('the one you play with your hands with all the padding and stuff');
Canada = this;
}(FootBall));
(function OZ(){
FootBall.AussieRules = new Game('Pure. Madness.');
}());
}());
@ianmacl
Copy link

ianmacl commented Jun 27, 2011

Produces invalid results in Canada.

@subtleGradient
Copy link
Author

@ianmacl fixed. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment