Simple types / Boolean
Conversion from a string
Converting to a string
Getting values
Logical operations
let
sunIsStar =
true
let
str =
"
\(sunIsStar)
"
//str is "true"
print
(
"str is
\(str)
"
)