While语句While语句示例: echo "Please tell me your password:"var pw = readLine(stdin)while pw != "12345": echo "Wrong password! Next try:" pw = readLine(stdin) 执行 while 语句直到 expr 计算结果为false。 无尽的循环没有错误。 while 语句打开一个 '隐式块',这样它们就可以用 break 语句跳出。