diff options
Diffstat (limited to 'cpp/036call_ingredient')
-rw-r--r-- | cpp/036call_ingredient | 8 |
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 ] |