https://github.com/liuyubobobo/Whats-New-in-Swift3
https://github.com/liuyubobobo/Play-with-Swift-3
https://github.com/liuyubobobo/Play-with-Swift-3
2016-12-16
let username : String = "llll";
let screnname : String;
if let username = username{
screnname = username;
// print(screnname);
}
else{
screnname = "gggg";
}
這個分明是錯的,,,欺騙小白啊
let screnname : String;
if let username = username{
screnname = username;
// print(screnname);
}
else{
screnname = "gggg";
}
這個分明是錯的,,,欺騙小白啊
2016-11-24