1WHITESPACE = _{ " " | "\r" | "\n" | "\t" } 2 3 4identifier = { (ASCII_ALPHA | "_")+ } 5assign = { identifier ~ "<-" ~ identifier } 6