blob: d106fd91b31d7d29c0ea17a79be22df1a7f0c619 (
plain)
1
2
3
4
5
6
7
8
9
|
<p>A value can be assigned to a variable using <code>let</code>.</p>
<p>
Variable names can be reused by later let bindings, but the values they
reference are immutable, so the values themselves are not changed or mutated
in any way.
</p>
<p>
In Gleam variable and function names are written in <code>snake_case</code>.
</p>
|