diff options
Diffstat (limited to 'cpp/020run')
-rw-r--r-- | cpp/020run | 5 |
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; |