Arithmetic
let a = 1 + 2
// `a` is `3`let a: UInt8 = 255
// Run-time error: The result `256` does not fit in the range of `UInt8`,
// thus a fatal overflow error is raised and the program aborts
//
let b = a + 1let a: Int8 = 100
let b: Int8 = 100
// Run-time error: The result `10000` does not fit in the range of `Int8`,
// thus a fatal overflow error is raised and the program aborts
//
let c = a * bLast updated