タイトル: 定数の宣言
SEOタイトル: 【Swift】定数の宣言
Swiftでは let の後に定数名を宣言する。
記述例
let str = "Hello, playground" print(str) |
出力結果
Hello, playground |