crayon-syntax-highlighter/util/sample/as.txt

9 lines
252 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
class com.example.Greeter extends MovieClip
{
public function Greeter() {}
public function onLoad():Void
{
var txtHello:TextField = this.createTextField("txtHello", 0, 0, 0, 100, 100);
txtHello.text = "Hello, world";
}
}