You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{Lexer}from"jsr:@dunno/lexicon";constmath=newLexer({ignored_whitespace: /\s/,// tokens with ignored_ are not shown at outputnumber: /[0-9]+/,operation: /[+-/*]/})console.log(math.lex("2 + 2"));