diff options
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/010vm b/cpp/010vm index 28cdd2c0..a734305f 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -10,6 +10,7 @@ int Next_recipe_number = 1; // Recipes are lists of instructions. To run a recipe, the computer runs its // instructions. struct recipe { + string name; vector<instruction> steps; }; |