While 循环while 和 do .. while 照常使用
while (x > 0) { x--}
do {
val y = retrieveData()} while (y != null) // y 在此处可见
使用方式跟java C++等基本没有什么区别