operator associativity test
♥0 |
Line 9 |
Modified 2010-04-25 04:21:29 |
MIT License
archived:2017-03-30 10:50:50
ActionScript3 source code
/**
* Copyright wh0 ( http://wonderfl.net/user/wh0 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/9Qav
*/
package {
import com.actionscriptbible.Example;
public class FlashTest extends Example {
public function FlashTest() {
// it's really easy to make fake bug demos.
trace(2 * 3 + 4 * 5);
trace((2 * 3) + (4 * 5));
}
}
}