source: trunk/flex/examples/manual/reject.lex@ 3032

Last change on this file since 3032 was 3031, checked in by bird, 18 years ago

flex 2.5.33.

File size: 245 bytes
Line 
1/*
2 * reject.lex: An example of REJECT and unput()
3 * misuse.
4 */
5
6%%
7UNIX {
8 unput('U'); unput('N'); unput('G'); unput('\0');
9 REJECT;
10 }
11GNU printf("GNU is Not Unix!\n");
12%%
Note: See TracBrowser for help on using the repository browser.