about summary refs log tree commit diff stats
path: root/cpp/012run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-02-20 00:03:47 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-02-20 00:03:47 -0800
commit916ae8f5d64995f786ea5610affdd004258e8eb9 (patch)
treee2f5c8f13ead6933767915dcecbb3323dae83eda /cpp/012run
parentb291f85b8d0ece9312b066a84cbeca1b367fe85f (diff)
downloadmu-916ae8f5d64995f786ea5610affdd004258e8eb9.tar.gz
799 - 'get' on records
Diffstat (limited to 'cpp/012run')
-rw-r--r--cpp/012run1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/012run b/cpp/012run
index a1778705..5d0e28cf 100644
--- a/cpp/012run
+++ b/cpp/012run
@@ -42,6 +42,7 @@ void run(recipe_number r) {
 }
 
 vector<int> read_memory(reagent x) {
+//?   cout << "read_memory: " << x.to_string() << '\n'; //? 1
   vector<int> result;
   if (x.types[0] == 0) {  // literal
     result.push_back(to_int(x.name));