0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2024-12-26 20:41:28 +00:00
gzdoom/tools/re2c/examples/sample.re

8 lines
139 B
ReasonML
Raw Normal View History

/*!re2c
"print" {return PRINT;}
[a-z]+ {return ID;}
[0-9]+ {return DEC;}
"0x" [0-9a-f]+ {return HEX;}
[\000-\377] {return ERR;}
*/