about summary refs log tree commit diff stats
path: root/cpp/030length
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-05 19:18:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-05 19:18:32 -0700
commitc17d559155b3f666a729d6380d9b8236f67bc481 (patch)
tree51ffe10736da978e80b117a971a4e38b5ccdfa3f /cpp/030length
parent267ebb590b0a08d6e8bc9e3f8644b491d0d790ac (diff)
downloadmu-c17d559155b3f666a729d6380d9b8236f67bc481.tar.gz
1019 - stupid error in 'new'
Diffstat (limited to 'cpp/030length')
-rw-r--r--cpp/030length1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/030length b/cpp/030length
index 6a297dd3..f690d543 100644
--- a/cpp/030length
+++ b/cpp/030length
@@ -19,6 +19,7 @@ Next_recipe_number++;
 case LENGTH: {
   reagent x = canonize(instructions[pc].ingredients[0]);
   vector<int> result;
+//?   cout << "length: " << x.value << '\n'; //? 1
   result.push_back(Memory[x.value]);
   write_memory(instructions[pc].products[0], result);
   break;