In Zolo, variables are declared with let:
let
let name = "Alice" let age = 30 print(name) print(age)
By default, variables are immutable — they cannot be reassigned after declaration.
Goal: Create a variable language with the value "Zolo" and print it.
language
"Zolo"
Run the code to see the output
9 results