Skip to content

Instantly share code, notes, and snippets.

@destroytoday
Created February 9, 2010 00:38
Show Gist options
  • Save destroytoday/298774 to your computer and use it in GitHub Desktop.
Save destroytoday/298774 to your computer and use it in GitHub Desktop.
package {
import flash.display.Sprite;
public class Test extends Sprite {
public function Test() {
for (var i:uint = 0; i < 500; ++i) {
if (i * 0.01 != i / 100) {
trace(i);
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment