Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 245 Bytes

File metadata and controls

16 lines (14 loc) · 245 Bytes
Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 4 column 1
---
title: Create an Application
sidebar_position: 5

```
package{
  public class HelloAir{
    public function main(saySmth:String){ //args
      saySmth = "Hello, World";
      trace(saySmth); // or trace("hello, world");
    }
  }
}
```
---