hen 0.12.0

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

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