Skip to content

Commit 7d5bf7c

Browse files
committed
Lexical Structure: Whitespace
1 parent 3553009 commit 7d5bf7c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ref/lexer.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Whitespace
44

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

712
## Literals

0 commit comments

Comments
 (0)