执行代码:
let hello = "hello" // 常量,不可变。
var hello1 = "hello" //变量,可变。
print(hello == hello1)
hello1 += "2"
hello1.append(",")
print(hello)
print(hello1)
for s in hello {
print(s)
}
// 字符串插值,\() 里面的运算代码会执行结果。
let str = "6 * 7 = \(6*7)"
print(str)
执行结果:
true
hello
hello2,
h
e
l
l
o
6 * 7 = 42
网友评论