Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/basics/create-an-app.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This documentation has been placed in the metadata for the page. You need to place any documentation below the second --- tagsfor the markdown metadata.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh ok thanks I'll do that

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs more substance. This section is supposed to show a new user how to create an application.

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,14 @@ 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");
}
}
}
```