๐Ÿ“˜return

Swift โŸฉ flow control โŸฉ control transfer โŸฉ return

for n in 1...10 {
    if n == 3 { return }    // โ›” error
    //          ^^^^^^
    // โ›” error: return invalid outside of a func
}

Last updated

Was this helpful?