Porcelain/as/test.as
alterdekim 98015b33d6 woooow
modified:   app/Lexer.hs
	modified:   as/test.as
2024-10-31 03:03:25 +03:00

14 lines
333 B
ActionScript

package {
import flash.text.TextField;
import flash.display.Sprite;
public class TextHello extends Sprite {
public function TextHello() {
var tf:TextField = new TextField();
tf.text = "Hello World!"
tf.x = 50;
tf.y = 40;
addChild(tf);
}
}
}