Short description about the thing!
Note: This is in alpha and is likely to change!
For matching tokens.
For tokens that are keywords or symbols
kw := loop while if else
op := + - * / ( )
cmp := <= >= < >
For tokens that match a regular expression
float := /[0-9]+\.[0-9]+/
int := /[0-9]+/
str := /"(!")+"/
ident := /[a-zA-Z_]+/
line:comment := /\/\/*+?(?:\n)/
// Tokens
float := /[0-9]+\.[0-9]+/
int := /[0-9]+/
op := ( ) + - * /