Created
July 25, 2015 06:00
-
-
Save haranicle/9ba4ecf295b461d11fe9 to your computer and use it in GitHub Desktop.
repeat-whileについて #cswift #CodePiece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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