9 lines
126 B
ActionScript 3
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);
|
|
} |