1. 개요 특정 조건문은 Bool 타입 이어야한다. repeat-while은 다른언어에서 do-while 문이라고 보면된다.( 무조건 한번은 실행시킨다. ) continue(다음으로 pass), break(중지)로 흐름제어가 가능하다. 2. while 조건(condition)이 거짓(false)일때까지 구문(statements)을 반복 var square = 0 var diceRoll = 0 while square < finalSquare { // roll the dice diceRoll += 1 if diceRoll == 7 { diceRoll = 1 } // move by the rolled amount square += diceRoll if square < board.count { // if we'..