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.
13 lines
432 B
Racket
13 lines
432 B
Racket
6 years ago
|
#lang brag
|
||
|
|
||
|
program : load-expr output-file-expr compare-to-expr output-list-expr test-expr*
|
||
|
load-expr : /"load" ID /","
|
||
|
output-file-expr : /"output-file" ID /","
|
||
|
compare-to-expr : /"compare-to" ID /","
|
||
|
output-list-expr : /"output-list" column+ /";"
|
||
|
/column : ID FORMAT-STRING
|
||
|
@test-expr : step-expr+ /";"
|
||
|
@step-expr : (set-expr | eval-expr | output-expr) [/","]
|
||
|
set-expr : /"set" ID VAL
|
||
|
eval-expr : /"eval"
|
||
|
output-expr : /"output"
|