m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/parser.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.js')
-rw-r--r--src/parser.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.js b/src/parser.js
index b1f6ebb..54dc0ae 100644
--- a/src/parser.js
+++ b/src/parser.js
@@ -75,6 +75,7 @@ newInfix('bigTimes', 23, { type: 'multiply' })
newInfix('bigDivide', 23, { type: 'divide' })
newInfix('plus', 25, { type: 'bonusAdd' })
newInfix('minus', 25, { type: 'bonusSubtract' })
+newInfix('times', 26, { type: 'bonusMultiply' })
newSymbol('minus', (parser) => {
return {
type: 'negative',