🌈 搜索
📅  最后修改于: 2022-03-11 15:00:57.754000             🧑  作者: Mango
for i in 1...3 { if i == 2 { continue } else{ print(i) } } //output: 1, 3