RosettaCodeData/Task/Hello-world-Graphical/ActionScript/hello-world-graphical.as
2023-07-01 13:44:08 -04:00

3 lines
106 B
ActionScript

var textField:TextField = new TextField();
stage.addChild(textField);
textField.text = "Goodbye, World!"