「Swift入門」for in strideを利用するサンプル

サンプルコード

for m in stride(from: 55, to: 155, by: 15) {
    print(m)
}

 

Swift

Posted by arkgame