mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-28 19:52:07 +00:00
18 lines
163 B
Plaintext
18 lines
163 B
Plaintext
/* example6.input */
|
|
{
|
|
|
|
if (variable) { a = b ; }
|
|
|
|
while (10) {
|
|
|
|
if (2) { b = 10 ; }
|
|
if (x) { c = x ; } else { d = 10 ; }
|
|
|
|
}
|
|
|
|
variable = 42;
|
|
|
|
}
|
|
|
|
|