about summary refs log tree commit diff stats
path: root/062convert_ingredients_to_text.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-15 13:23:00 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-15 13:23:00 -0700
commitd63cddeac0f5fb7eeaeacf828765965e9b61b6ca (patch)
tree8a5b91a1a377ab94916aeb0dc2fca23ab75de96e /062convert_ingredients_to_text.cc
parentb6e33d0222cff567d49aa034900bb5c1db209886 (diff)
downloadmu-d63cddeac0f5fb7eeaeacf828765965e9b61b6ca.tar.gz
3364
Diffstat (limited to '062convert_ingredients_to_text.cc')
-rw-r--r--062convert_ingredients_to_text.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/062convert_ingredients_to_text.cc b/062convert_ingredients_to_text.cc
index 78765501..bdba51d2 100644
--- a/062convert_ingredients_to_text.cc
+++ b/062convert_ingredients_to_text.cc
@@ -2,7 +2,7 @@
 
 :(scenarios transform)
 :(scenario rewrite_stashes_to_text)
-recipe main [
+def main [
   local-scope
   n:number <- copy 34
   stash n
@@ -11,7 +11,7 @@ recipe main [
 +transform: stash {stash_2_0: ("address" "array" "character")}
 
 :(scenario rewrite_traces_to_text)
-recipe main [
+def main [
   local-scope
   n:number <- copy 34
   trace 2, [app], n
@@ -23,7 +23,7 @@ recipe main [
 //: passing addresses around
 
 :(scenario rewrite_stashes_of_arrays)
-recipe main [
+def main [
   local-scope
   n:address:array:number <- new number:type, 3
   stash *n
@@ -32,7 +32,7 @@ recipe main [
 +transform: stash {stash_2_0: ("address" "array" "character")}
 
 :(scenario ignore_stashes_of_static_arrays)
-recipe main [
+def main [
   local-scope
   n:array:number:3 <- create-array
   stash n
@@ -43,7 +43,7 @@ recipe main [
 container foo [
   x:number
 ]
-recipe bar -> x:foo [
+def bar -> x:foo [
   local-scope
   load-ingredients
   x <- merge 34
@@ -137,7 +137,7 @@ container foo [
   x:number
   y:number
 ]
-recipe main [
+def main [
   local-scope
   x:foo <- merge 34, 35
   stash x