> ## Documentation Index
> Fetch the complete documentation index at: https://docs.withsutro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Syntax Basics

> Basic SLang source syntax, including comments.

## Comments

SLang comments are single-line comments that start with `;;`.

```slang theme={null}
;; This comment is valid SLang.
entity Task
  fields
    title: TEXT
```

Do not use `#` or `//` for comments in `.slang` files.
