
Matthew Lutz
2,536 Pointsi do understand this error code "expression resolves to an unused l-value"
can someone explain how it get this code to work
var language = "Swift"
language
1 Answer

Jhoan Arango
13,603 PointsHello
All you had to do to finish the challenge was to re-assign a new value to the variable you had.
var language = "Swift"
language = "Objective-C"
Good luck