0.1.0 base collection of features
Implemented evaluation of tree calculus terms alongside referentially transparent variable identifiers. Implemented evaluation of defined functions into tree calculus.
This commit is contained in:
@ -75,3 +75,7 @@ saplingLexer = many (sc *> choice
|
||||
, closeBracket
|
||||
, lnewline
|
||||
]) <* eof
|
||||
|
||||
lexSapling input = case runParser saplingLexer "" input of
|
||||
Left err -> error "Failed to lex input"
|
||||
Right tokens -> tokens
|
||||
|
Reference in New Issue
Block a user