kit

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

pratt_ternary_arity.ebnf (76B)


      1 %pratt expr {
      2   primary primary;
      3   ternary "?" ":" "!";
      4 }
      5 primary = NUMBER;