skip keyword is
introduced instead. For example:
C:
while (f(b++));
Gont:
while (f(b++))
skip;
This is to disallow common C's mistake:
while (cond);
do_sth;
(note `;' after while).