# Comments

Currently comments exist in two forms: single line and multiline. When using the formatter, comments at the top level are preserved but not those inside function bodies.

## Single line

```elm
-- a single line comment
```

## Multi line

```elm
{-
hello world
multiple lines
-}
```
