Skip to content

Instantly share code, notes, and snippets.

@jmcguirk
Created January 4, 2013 17:50
Show Gist options
  • Save jmcguirk/4454526 to your computer and use it in GitHub Desktop.
Save jmcguirk/4454526 to your computer and use it in GitHub Desktop.
protected function works():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