forked from: flash on 2013-4-1
♥0 |
Line 11 |
Modified 2013-04-01 16:45:12 |
MIT License
archived:2017-03-30 07:08:10
ActionScript3 source code
/**
* Copyright s8t1h12akj ( http://wonderfl.net/user/s8t1h12akj )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/f3X2
*/
// forked from s8t1h12akj's flash on 2013-4-1
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 );
}
}
}