From Jason Turner

[stmt.while]

Diff to HTML by rtfpessoa

tmp/tmpquux1o4g/{from.md → to.md} RENAMED
@@ -1,15 +1,12 @@
1
  ### The `while` statement <a id="stmt.while">[[stmt.while]]</a>
2
 
3
  In the `while` statement the substatement is executed repeatedly until
4
- the value of the condition [[stmt.select]] becomes `false`. The test
5
- takes place before each execution of the substatement.
6
 
7
- When the condition of a `while` statement is a declaration, the scope of
8
- the variable that is declared extends from its point of declaration
9
- [[basic.scope.pdecl]] to the end of the `while` *statement*. A `while`
10
- statement is equivalent to
11
 
12
  ``` bnf
13
  label ':'
14
  '{'
15
  if '(' condition ')' '{'
 
1
  ### The `while` statement <a id="stmt.while">[[stmt.while]]</a>
2
 
3
  In the `while` statement the substatement is executed repeatedly until
4
+ the value of the condition [[stmt.pre]] becomes `false`. The test takes
5
+ place before each execution of the substatement.
6
 
7
+ A `while` statement is equivalent to
 
 
 
8
 
9
  ``` bnf
10
  label ':'
11
  '{'
12
  if '(' condition ')' '{'