Zolo is statically typed with type inference:
int
42
-7
0
float
3.14
-2.5
str
"hello"
bool
true
false
T?
let n: int = 42 let f: float = 3.14 let s: str = "Zolo" let b: bool = true let maybe: str? = nil
Goal: Declare variables of the 4 basic types and use them in an interpolation.
Run the code to see the output
9 results