swift playground

セミコロンはありません。

print("Hello World!")

Hello World!

自動的に改行されます。

print("Hello World!")
print("Hello")

定数、変数

let msg1: String
msg1 = "this is let"

print(msg1)

var msg2: String
msg2 = "this is variable"
msg2 = "oh, this is swift variable"
print(msg2)

this is let
oh, this is swift variable
なるほど!