タイトル: 配列の宣言 to
SEOタイトル: 【Swift】配列(array)の宣言
Swiftでは [] を用いて配列を宣言する。
記述例
var array = [1, 2, 3, 4, 5] print(array) |
出力結果
Hello, playground |