Explore Library
Code QuizBeginner

Missing Semicolon on One Line

Spot the statement-separator issue in this line.

Codeswift
let a = 1 let b = 2
print(a + b)

What is the bug in this code?