5 # Variable declarations use `:=` and do not
6 # require you to specify a type explicitly:
9 # To assign a new value, use `=`
12 # You can also use update assignments like `+=`
17 # Variables are strongly typed, so you can't
18 # assign different types to the same variable:
19 x = "hello" # <-- This will error, comment it out or fix it
21 # Declare a variable called `y` and give it the