# 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`.
