aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2021-12-29 15:30:08 -0500
committerChloe Kudryavtsev <toast@toast.cafe>2021-12-29 15:30:08 -0500
commit965fc7dab276583c79abcea0363c2fb2756acaa7 (patch)
tree829ce3eea086663c2152d438fc9ff25b116c9bc3 /examples
parentrelease 1.1-0 (diff)
update examples and readme for 1.1
Diffstat (limited to 'examples')
-rw-r--r--examples/math.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/math.lua b/examples/math.lua
index eed979b..f0f105b 100644
--- a/examples/math.lua
+++ b/examples/math.lua
@@ -59,5 +59,5 @@ else
test = [[10 + 5 * 2 + 10]]
end
-local eind, out = pm.parse(test, lexer, expr)
-print(eind, out)
+local out, eind, find = pm.parse(test, lexer, expr)
+print(out, eind, find)