Explore Library
Code QuizBeginner

Arithmetic Across Different Types

Find why this arithmetic expression won't compile.

Codeswift
let a = 10
let b = 3.0
let result = a + b
print(result)

What is the bug in this code?