Skip to content

Instantly share code, notes, and snippets.

@haranicle
Created July 25, 2015 06:00
Show Gist options
  • Save haranicle/9ba4ecf295b461d11fe9 to your computer and use it in GitHub Desktop.
Save haranicle/9ba4ecf295b461d11fe9 to your computer and use it in GitHub Desktop.
repeat-whileについて #cswift #CodePiece
repeat {
// ここを実行後にexpressionを評価
} while expression
// 例
var count = 100
repeat {
--count
} while count > 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment