File: ab.lark

package info (click to toggle)
python-lark 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,788 kB
  • sloc: python: 13,305; javascript: 88; makefile: 34; sh: 8
file content (10 lines) | stat: -rw-r--r-- 85 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
startab: expr

expr: A B
    | A expr B

A: "a"
B: "b"

%import common.WS
%ignore WS