diff options
-rw-r--r-- | src/content/chapter0_basics/lesson10_assignments/en.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/content/chapter0_basics/lesson10_assignments/en.html b/src/content/chapter0_basics/lesson10_assignments/en.html index 6d535de..d106fd9 100644 --- a/src/content/chapter0_basics/lesson10_assignments/en.html +++ b/src/content/chapter0_basics/lesson10_assignments/en.html @@ -1,8 +1,9 @@ -<p> - A value can be assigned to a variable using <code>let</code>. -</p> +<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> |