Explore Library
Code QuizBeginner

Type Inference Conflict

Understand why this inferred type causes an error.

Codeswift
var count = 5
count = 5.5
print(count)

What is the bug in this code?