tomo-koans/lesson-templates/lesson-03-variables.tm
2025-03-24 18:06:22 -04:00

28 lines
484 B
Tcl

# Variables
func main():
# Variable declarations use `:=` and do not
# require you to specify a type explicitly:
x := 123
# To assign a new value, use `=`
x = 999
# You can also use update assignments like `+=`
x += 1
>> x
= 1000
# Variables are strongly typed, so you can't
# assign different types to the same variable:
x = "hello"
# Declare a variable called `y` and give it the
# value "okay"
>> y
= "okay"