From 916ae8f5d64995f786ea5610affdd004258e8eb9 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 20 Feb 2015 00:03:47 -0800 Subject: 799 - 'get' on records --- cpp/012run | 1 + 1 file changed, 1 insertion(+) (limited to 'cpp/012run') 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 read_memory(reagent x) { +//? cout << "read_memory: " << x.to_string() << '\n'; //? 1 vector result; if (x.types[0] == 0) { // literal result.push_back(to_int(x.name)); -- cgit 1.4.1-2-gfad0 Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats
blob: 7cb0a11d13be7ec4a03a44487d498901a24b84be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13