mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-11-07 16:34:21 +01:00
Fix undefined function: '∏'
Without this fix `prod(1,10,n)` works fine, but `∏(1,10,n)` returns `Undefined function: '∏'.`
This commit is contained in:
parent
946074066a
commit
12869efe08
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user