about summary refs log tree commit diff stats
path: root/cpp/035call
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/035call')
-rw-r--r--cpp/035call5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/035call b/cpp/035call
index 3683db12..21d07b18 100644
--- a/cpp/035call
+++ b/cpp/035call
@@ -1,4 +1,5 @@
-//: So far the recipes we define can't run each other. Let's change that.
+//: So far the recipes we define can't run each other. Let's fix that.
+
 :(scenario "calling_recipe")
 recipe main [
   f
@@ -46,7 +47,7 @@ inline vector<instruction>& steps(routine& rr) {
 
 :(replace{} "default:" following "End Primitive Recipe Implementations")
 default: {
-  // not a primitive; try to look for a matching recipe
+  // not a primitive; try to look up the book of recipes
   if (Recipe.find(instructions[pc].operation) == Recipe.end()) {
     raise << "undefined operation " << instructions[pc].operation << ": " << instructions[pc].name << '\n';
     break;
220d73e237c51897b7d1211ec53b0dc04'>f5465e12 ^
dbe12410 ^
f5465e12 ^
dbe12410 ^

f5465e12 ^







dbe12410 ^

f5465e12 ^





dbe12410 ^

f5465e12 ^








dbe12410 ^

f5465e12 ^


76755b28 ^
f5465e12 ^

9570363a ^
f5465e12 ^
dbe12410 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80