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");
}
}
}
```
---