Swift Double V Float
Double is 64-bit // stores more precise decimal number
Float is 32-bit
emoant
Double is 64-bit // stores more precise decimal number
Float is 32-bit
// create float type variable
let piValue: Float = 3.14
print(piValue)
// Output: 3.14