1BEGIN 2{ 3 printf("exiting now...\n"); 4 exit(); 5} 6 7END 8{ 9 printf("executed\n"); 10 exit(); 11 printf("not executed\n"); 12} 13