Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/ref/lexer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Whitespace

The following characters are considered as whitespace (blanks): horizontal tab
(`0x09`), new line (`0x10`), vertical tab (`0x11`), form feed (`0x12`),
carriage return (`0x13`), and space (`0x20`). Whitespace characters are ignored
by the lexer, but they separate tokens, e.g., identifiers or literals.

## Comments

## Literals
Expand Down
Loading