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)+ }