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.
Run the code to see the output
9 results