buy2函數
把
guard money >= price else{
return
}
寫成
if money < price{
return
}
不是更好更清晰更方便嗎
把
guard money >= price else{
return
}
寫成
if money < price{
return
}
不是更好更清晰更方便嗎
2017-09-11