Removed 'comment' token and added FloorDiv token

This commit is contained in:
nocturn9x 2021-07-31 10:19:39 +02:00
parent 925ad52293
commit eb538f9d4b
1 changed files with 2 additions and 2 deletions

View File

@ -55,12 +55,12 @@ type
LessOrEqual, GreaterOrEqual, # >= <=
ExclamationMark, DoubleEqual, # ! ==
NotEqual, RightShift, LeftShift, # != >> <<
LogicalAnd, LogicalOr, # && ||
LogicalAnd, LogicalOr, FloorDiv, # && || //
# Miscellaneous
EndOfFile, Comment
EndOfFile
Token* = object