about summary refs log tree commit diff stats
path: root/apps/arith.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-30 14:54:30 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-30 14:54:30 -0700
commit2655a4a91d1d2e98cc9ab9c54e70d4eb49c735d6 (patch)
tree92546a021880dee6b956e0115d44b7370edb63bd /apps/arith.mu
parent8bd3c2b5a83d9e8b97472311491010d66a7b7584 (diff)
downloadmu-2655a4a91d1d2e98cc9ab9c54e70d4eb49c735d6.tar.gz
6602
Diffstat (limited to 'apps/arith.mu')
-rw-r--r--apps/arith.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/arith.mu b/apps/arith.mu
index 4f33d7be..23b078fe 100644
--- a/apps/arith.mu
+++ b/apps/arith.mu
@@ -56,7 +56,7 @@ fn main -> exit-status/ebx: int {
 
 fn simplify -> result/eax: int, look/esi: byte {
   # prime the pump
-  look <- get-char  # prime the pump
+  look <- get-char
   # do it
   result, look <- expression look
 }