flash on 2010-6-8
ActionScript3 source code
/**
* Copyright ir_77 ( http://wonderfl.net/user/ir_77 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/ziH3
*/
package{
import flash.display.Sprite;
import flash.text.TextField;
public class HelloWorld extends Sprite{
public function HelloWorld(){
var tf :TextField = new TextField;
tf.text = "hello world!";
addChild(tf);
}
}
}