1// Test BEGIN & END special rules as well as comments... 2// ...inside & outside action blocks 3BEGIN 4{ 5 6 printf("Hello from %s\n", probe); 7} 8 9END 10{ 11 // Comment inside of a block 12 printf("Bye from %s\n", probe); 13} 14