> For the complete documentation index, see [llms.txt](https://siliconlang.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://siliconlang.org/documents/variables.md).

# Variables

### Dynamic Variables

{% code title="src/main.si" %}

```
fn main() {
    let integer1: i32 = 22;
    let integer2 = 202;
    
    let boolean1: bool = false;
    let boolean2 = true;
}

```

{% endcode %}

### Constant Variables

{% hint style="warning" %}
This section is not implemented yet.
{% endhint %}

{% code title="src/main.si" %}

```
fn main() {
    const integer1: i32 = 22;
    const integer2 = 202;
    
    const boolean1: bool = false;
    const boolean2 = true;
}

```

{% endcode %}
