> For the complete documentation index, see [llms.txt](https://furesoft.gitbook.io/socordia/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://furesoft.gitbook.io/socordia/the-basics.md).

# The Basics

In this section you will learn the absolute basic knowledge needed to write simple applications with Socordia.

To write something out to the console:

```sc
func main() {
    print("Hello World");
}
```

A program has to have an entry point method called `main`.
