Update 01_The_Basics.md (#1204)

勘误,第608行
print("My number is \(muNumber)")  -> print("My number is \(myNumber)")
This commit is contained in:
dongfangzan
2022-10-25 10:11:39 +08:00
committed by GitHub
parent 9751fa16db
commit 960616507f

View File

@ -605,7 +605,7 @@ if let myNumber = myNumber {
``` swift
if let myNumber{
print("My number is \(muNumber)")
print("My number is \(myNumber)")
}
// 输出 "My number is 123"
```