The Meson Build System
http://mesonbuild.com/
9 lines
110 B
9 lines
110 B
10 years ago
|
%{
|
||
|
#include <stdlib.h>
|
||
|
#include "parser.tab.h"
|
||
|
%}
|
||
|
|
||
|
%%
|
||
|
("true"|"false") {return BOOLEAN;}
|
||
|
. { yyerror(); }
|