Explore Library
Code QuizBeginner

Mutating a let Constant

Find out why changing this constant is an error.

Codeswift
let maxUsers = 100
maxUsers = 150
print(maxUsers)

What is the bug in this code?