lとIの違いが分からなくなる。
♥2 |
Line 13 |
Modified 2009-09-21 19:40:59 |
MIT License
archived:2017-03-04 23:29:20
ActionScript3 source code
/**
* Copyright paq ( http://wonderfl.net/user/paq )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/aVy2
*/
package {
import flash.display.Sprite;
import com.bit101.components.Label;
public class FlashTest extends Sprite {
public function FlashTest() {
var lndex:int = 5;
var Index:int = 2;
new Label(this, 10,10, String(
lndex + Index * Index * lndex / Index - lndex / lndex - Index
));
}
}
}