token
🚧 施工中
Last updated
Was this helpful?
🚧 施工中
Last updated
Was this helpful?
tokens are:
keywords (if
, else
, var
...)
punctuators (+
, -
, ?
, {
, }
...)
generating tokens
lexing stage (e.g., var a = 2;
-> var
, a
, =
, 2
, ;
)