Math.random() - Math.random()
@author Takashi Murai(KAYAC)
♥0 |
Line 21 |
Modified 2009-10-27 14:36:36 |
MIT License
archived:2017-03-20 13:38:51
ActionScript3 source code
/**
* Copyright Murai ( http://wonderfl.net/user/Murai )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/23Zh
*/
package {
import flash.display.*;
import flash.text.*;
/*
@author Takashi Murai(KAYAC)
*/
[SWF(width="400", height="400", frameRate="24", backgroundColor="#FFFFFF")]
public class Main extends Sprite {
public var txt:TextField;
public function Main() {
init();
}
public function init():void{
txt = new TextField();
txt.width = 400;
txt.height = 400;
addChild(txt);
var i:uint=40
while(--i){
txt.appendText("Math.random() - Math.random() ="+(Math.random() - Math.random() )+"\n");
}
}
}
}