about summary refs log tree commit diff stats
path: root/cpp/020run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 23:24:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 23:24:52 -0700
commit7284d503f67572dab678f68e5635c471a9d53480 (patch)
tree292b611d694da66c1a881ed11662cf9b0ee64610 /cpp/020run
parentb3cdcdd44f6b8db053e4814351fbf04fefb7d7cf (diff)
downloadmu-7284d503f67572dab678f68e5635c471a9d53480.tar.gz
1094 - demarcate sections in layers
We have tangled vs regular comments, but they highlight the same. So
we're still at 3 colors for comments. Anything more starts to seem
gratuitous.
Diffstat (limited to 'cpp/020run')
-rw-r--r--cpp/020run5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/020run b/cpp/020run
index 400524e2..02a949f0 100644
--- a/cpp/020run
+++ b/cpp/020run
@@ -122,7 +122,7 @@ void load(string filename) {
   fin.close();
 }
 
-//: On startup, load everything in core.mu
+//:: On startup, load everything in core.mu
 :(before "End Load Recipes")
 load("core.mu");
 // freeze everything so it doesn't get cleared by tests
@@ -137,7 +137,8 @@ void run(string form) {
   run(tmp.front());
 }
 
-:(code)
+//:: Reading from memory, writing to memory.
+
 vector<int> read_memory(reagent x) {
 //?   cout << "read_memory: " << x.to_string() << '\n'; //? 1
   vector<int> result;