Skip to content

Instantly share code, notes, and snippets.

@jmcguirk
Created January 4, 2013 17:49
Show Gist options
  • Save jmcguirk/4454520 to your computer and use it in GitHub Desktop.
Save jmcguirk/4454520 to your computer and use it in GitHub Desktop.
protected function wtf():void{
var val:int = -3;
switch(val){
case -3:
trace("woohoo");
break;
default:
trace('wtf!');
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment