mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-07-16 12:37:19 +02:00
8 lines
139 B
ReasonML
8 lines
139 B
ReasonML
/*!re2c
|
|
"print" {return PRINT;}
|
|
[a-z]+ {return ID;}
|
|
[0-9]+ {return DEC;}
|
|
"0x" [0-9a-f]+ {return HEX;}
|
|
[\000-\377] {return ERR;}
|
|
*/
|