Files
dl/project/dl_test/res/as/初始.as
T
2026-09-16 14:07:40 +08:00

9 lines
126 B
ActionScript 3

void main()
{
string a = "Hello";
string b = "World";
print(a + ' ' + b + "!");
int c = 2;
int d = 3;
// print(c + d);
}