[swift-evolution] Proposal: Replace labels with keywords and "*" suffixes

Amir Michail a.michail at me.com
Thu Dec 10 06:59:08 CST 2015


For example:

for* … {
  for** ... {
    for ... {
      …
      if … { break for* }
      ...
      if … { continue for** }
      ...
    }
  }
}

repeat {
  do {
    for … {
      if … { break do }
      if … { continue repeat }
    }
    …
  }
} while …




More information about the swift-evolution mailing list