about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-08-14 18:58:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-08-14 18:58:38 -0700
commit578327f1827dce727e726320a97b4b7e39a9afb2 (patch)
tree3ebd09e7be6898ae1bfbb33082668d3846be9fd0
parente0551d78f10b9405f30d3074f3644c4de075d317 (diff)
downloadmu-578327f1827dce727e726320a97b4b7e39a9afb2.tar.gz
1996
-rw-r--r--020run.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/020run.cc b/020run.cc
index 1c63c564..8469e4da 100644
--- a/020run.cc
+++ b/020run.cc
@@ -318,24 +318,24 @@ recipe main [
 
 :(scenario comma_without_space)
 recipe main [
-  1:number <- add 2,2
+  1:number, 2:number <- copy 2,2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario space_without_comma)
 recipe main [
-  1:number <- add 2 2
+  1:number, 2:number <- copy 2 2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario comma_before_space)
 recipe main [
-  1:number <- add 2, 2
+  1:number, 2:number <- copy 2, 2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario comma_after_space)
 recipe main [
-  1:number <- add 2 ,2
+  1:number, 2:number <- copy 2 ,2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1