We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_
Perhaps the following is preferable:
for _ in range(10): t = get_non_white(lexer) assert t == EOF_SIGNAL
to this, which is currently required:
_ : i32 for _ in range(10): t = get_non_white(lexer) assert t == EOF_SIGNAL