NEWS.md in lrama-0.5.12 vs NEWS.md in lrama-0.6.0

- old
+ new

@@ -1,6 +1,26 @@ # NEWS for Lrama +## Lrama 0.6.0 (2023-12-25) + +### User defined parameterizing rules + +Allow to define parameterizing rule by `%rule` directive. + +``` +%rule pair(X, Y): X Y { $$ = $1 + $2; } + ; + +%% + +program: stmt + ; + +stmt: pair(ODD, EVEN) <num> + | pair(EVEN, ODD) <num> + ; +``` + ## Lrama 0.5.11 (2023-12-02) ### Type specification of parameterizing rules Allow to specify type of rules by specifying tag, `<i>` in below example.