about summary refs log tree commit diff stats
path: root/cpp/036call_ingredient
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 10:19:03 -0700
commit88be3dbc0c996490dbac97538f4d712a5b4f6f07 (patch)
treedbba8f597d3090bb71553544ba28c59644973b3b /cpp/036call_ingredient
parente351d6fd04d95068fac4402dc103e0752182fa8d (diff)
downloadmu-88be3dbc0c996490dbac97538f4d712a5b4f6f07.tar.gz
1162
Diffstat (limited to 'cpp/036call_ingredient')
-rw-r--r--cpp/036call_ingredient8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/036call_ingredient b/cpp/036call_ingredient
index f71be902..a1b80959 100644
--- a/cpp/036call_ingredient
+++ b/cpp/036call_ingredient
@@ -1,7 +1,7 @@
 //: Calls can take ingredients just like primitives. To access a recipe's
 //: ingredients, use 'next-ingredient'.
 
-:(scenario "next_ingredient")
+:(scenario next_ingredient)
 recipe main [
   f 2:literal
 ]
@@ -13,7 +13,7 @@ recipe f [
 +mem: location 12 is 2
 +mem: storing 3 in location 13
 
-:(scenario "next_ingredient_missing")
+:(scenario next_ingredient_missing)
 recipe main [
   f
 ]
@@ -63,7 +63,7 @@ case NEXT_INGREDIENT: {
   break;
 }
 
-:(scenario "rewind_ingredients")
+:(scenario rewind_ingredients)
 recipe main [
   f 2:literal
 ]
@@ -88,7 +88,7 @@ case REWIND_INGREDIENTS: {
   break;
 }
 
-:(scenario "ingredient")
+:(scenario ingredient)
 recipe main [
   f 1:literal, 2:literal
 ]