• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* example6.input */
2{
3
4  if (variable) { a = b ; }
5
6  while (10) {
7
8    if (2) { b = 10 ; }
9    if (x) { c = x ; } else { d = 10 ; }
10
11  }
12
13  variable = 42;
14
15}
16
17
18