The Meson Build System http://mesonbuild.com/

9 lines
110 B

%{
#include <stdlib.h>
#include "parser.tab.h"
%}
%%
("true"|"false") {return BOOLEAN;}
. { yyerror(); }