Continue语句

像其它编程语言一样, continue 语句立刻开始下一次迭代:

  1. while true:
  2. let x = readLine(stdin)
  3. if x == "": continue
  4. echo x