saxophonit :: XophonLexer :: accept_digits
[0-9]+
# Accept a `[0-9]+` token. fun accept_digits(buffer: Buffer): Bool do if is_digit then loop buffer.chars.push(last_char.code_point) read_char if not is_digit then return true end else return false end end