about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/020run.cc b/020run.cc
index 1b7c2edc..288ed708 100644
--- a/020run.cc
+++ b/020run.cc
@@ -11,7 +11,7 @@
 
 :(scenario copy_literal)
 recipe main [
-  1:integer <- copy 23:literal
+  1:number <- copy 23:literal
 ]
 +run: instruction main/0
 +run: ingredient 0 is 23
@@ -19,8 +19,8 @@ recipe main [
 
 :(scenario copy)
 recipe main [
-  1:integer <- copy 23:literal
-  2:integer <- copy 1:integer
+  1:number <- copy 23:literal
+  2:number <- copy 1:number
 ]
 +run: instruction main/1
 +run: ingredient 0 is 1
@@ -29,7 +29,7 @@ recipe main [
 
 :(scenario copy_multiple)
 recipe main [
-  1:integer, 2:integer <- copy 23:literal, 24:literal
+  1:number, 2:number <- copy 23:literal, 24:literal
 ]
 +run: ingredient 0 is 23
 +run: ingredient 1 is 24
@@ -226,8 +226,8 @@ bool isa_literal(const reagent& r) {
 :(scenario run_label)
 recipe main [
   +foo
-  1:integer <- copy 23:literal
-  2:integer <- copy 1:integer
+  1:number <- copy 23:literal
+  2:number <- copy 1:number
 ]
 +run: instruction main/1
 +run: instruction main/2