example5.input 198 B

12345678910111213141516
  1. /* example5.input */
  2. {
  3. if (variable) { a = b ; }
  4. while (10) {
  5. if (2) { b = 10 ; }
  6. if (x) { c = x ; } else { d = 10 ; }
  7. }
  8. variable = 42;
  9. if (variable) { a = b ; } else { }
  10. }