swift variablename as string code example
Example 1: how to name a variable in swift
var myVariable = "this is a mutable string"
let myConstant = "this cannot be changed"
Example 2: how to name a variable of a specific type in swift
var myString: String = "this is a string"
var myInt: Int = 123
var myDouble: Double = 3.1415 // 64-bit
var myFloat: Float = 3.14 // 32-bit
var myArray: [Int] = [3, 54, 12, 0] // can change to any other [type]