Merge pull request #74 from aurelj/prod

Fix undefined function: '∏'
This commit is contained in:
PaddiM8 2021-10-03 22:14:04 +02:00 committed by GitHub
commit 7865bf6567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,6 +236,7 @@ impl<'a> Lexer<'a> {
let value = match value.as_ref() {
"Σ" | "" => String::from("sum"),
"" => String::from("prod"),
"" => String::from("integrate"),
"°" => String::from("deg"),
_ => value,