kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

unicode.ebnf (212B)


      1 %token E_ACUTE = "é";
      2 %token LAMBDA = "\u03BB";
      3 %token RAW_E9 = "\xE9";
      4 
      5 %lex {
      6   %skip WS = [ \t\r\n] [ \t\r\n]*;
      7 
      8   DIRECT_PI = "π";
      9   BYTE_A0 = [\xA0];
     10 }
     11 
     12 start = "\u00E9" "\u03BB" "\xE9" BYTE_A0 DIRECT_PI;