Skip to content
← Index | Lesson 3 of 5

String Interpolation

String Interpolation

Zolo supports string interpolation using {}:

let name = "Zolo"
let version = 1
print("Language: {name} v{version}")

You can put any expression inside the braces!

Goal: Use interpolation to print:

Hello, Zolo! You have 3 amazing features.
lesson-1-3.zolo
Program output

Run the code to see the output

Search Zolo

9 results

enespt-br