1BEGIN { 2 if (0) 3 printf("nothing"); 4 5 @var = 0; 6 if (@var) 7 printf("not printed\n"); 8 9 if (1) { 10 printf("printed!\n"); 11 } 12} 13