aboutsummaryrefslogtreecommitdiff
path: root/2021/day5/05a_grammar.rkt
blob: cc78e6ac7c5653773791660b55df53f9f620b170 (plain)
1
2
3
4
5
6
#lang brag
vents: (line "\n")* ["\n"]
line: coord " " "-" ">" " " coord
coord: number "," number
number: digit*
digit: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"