mirror of
https://github.com/PaddiM8/kalker.git
synced 2025-06-25 04:01:51 +02: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() {
|
let value = match value.as_ref() {
|
||||||
"Σ" | "∑" => String::from("sum"),
|
"Σ" | "∑" => String::from("sum"),
|
||||||
|
"∏" => String::from("prod"),
|
||||||
"∫" => String::from("integrate"),
|
"∫" => String::from("integrate"),
|
||||||
"°" => String::from("deg"),
|
"°" => String::from("deg"),
|
||||||
_ => value,
|
_ => value,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user