1
0
Fork 0

rpn(1): added alternative representation for powers

This commit is contained in:
Emma Tebibyte 2024-02-07 18:51:58 -07:00
parent d768a257a3
commit 4e040e0021
Signed by untrusted user: emma
GPG Key ID: 06FA419A1698C270
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ impl From<&str> for CalcType {
"-" | "" => Subtract,
"*" | "×" => Multiply,
"/" | "÷" => Divide,
"^" => Power,
"^" | "**" => Power,
"//" => Floor,
"%" => Modulo,
_ => {