hen 0.11.0

Run API collections from the command line.
1
2
3
4
5
6
7
whitespace = _{ "\t" | " " }
import_target = { (!NEWLINE ~ ASCII)+ }
import_statement = _{ "<<" ~ whitespace* ~ import_target ~ NEWLINE }
comment     = _{ "#" ~ (!NEWLINE ~ ASCII)+ ~ NEWLINE }
line =  { (!"#") ~ (!NEWLINE ~ ASCII)+ }

body = { (import_statement | comment | line | NEWLINE)+ }