💨
Day 5: Introduction to Swift Coding の記憶
CodeWithChrisでSwiftを学んでいる
学んだことの記録を残していきます。
CodeWithChris - The Leader in iOS Foundations Training : CodeWithChris https://codewithchris.com/
変数、定数の使い方
変数 var
定数 let
例:
var greeting = "Hello, playground"
let greeting = "Hello, playground"
型
型の種類
型定義の仕方
var {変数名}:{型定義} = 値
例:var greeting:String = "Hello, playground"
次はDay6を進める。Day8でこのクラスは終わり。
Discussion