Is it possible to skip tokens when defining a lexer?
I want to split a string into a list of tokens without whitespace, but I don't know if Moo can do this:
Input string:
"while ( a < 3 ) { a += 1; }"
List of tokens:
["while","(","a","<","3",")","{","a","+=","1",",";","}"]