Current Path : /usr/opt/nge/share/cmake-3.6/Help/command/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/opt/nge/share/cmake-3.6/Help/command/while.rst |
while ----- Evaluate a group of commands while a condition is true :: while(condition) COMMAND1(ARGS ...) COMMAND2(ARGS ...) ... endwhile(condition) All commands between while and the matching :command:`endwhile` are recorded without being invoked. Once the :command:`endwhile` is evaluated, the recorded list of commands is invoked as long as the condition is true. The condition is evaluated using the same logic as the :command:`if` command.