You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
187 B
Racket
8 lines
187 B
Racket
3 years ago
|
#lang yaragg
|
||
7 years ago
|
start: (tab | space | newline | letter | return | all)*
|
||
8 years ago
|
tab: '\t'
|
||
|
space: " "
|
||
|
newline: "\n"
|
||
7 years ago
|
return : "\r"
|
||
|
all : "\a" "\b" "\t" "\n" "\v" "\f" "\r" "\e"
|
||
8 years ago
|
letter: "x" | "y" | "z"
|