diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-01-31 23:40:51 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-01-31 23:51:58 -0800 |
commit | 48a74397fb1a967fffa67ffb80005d94ed2ac60c (patch) | |
tree | 97d64ca0b302c52cdbb802ddb9da4d5a54b876c3 | |
parent | df437f78e95a39bba36df6ffc1c00783bd80b4c6 (diff) | |
download | mu-48a74397fb1a967fffa67ffb80005d94ed2ac60c.tar.gz |
689
Typo in a recent test.
-rw-r--r-- | mu.arc.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mu.arc.t b/mu.arc.t index 8761664e..7eb6a65c 100644 --- a/mu.arc.t +++ b/mu.arc.t @@ -2322,14 +2322,16 @@ ]) (function main [ (1:space-address <- f) - (2:integer <- g 1:space-address) + (2:integer 3:integer <- g 1:space-address) ]))) (run 'main) (each routine completed-routines* (aif rep.routine!error (prn "error - " it))) +;? (prn memory*) ;? 1 (when (or (~is memory*.2 5) (~is memory*.3 5)) (prn "F - new names in shared spaces don't override old ones")) +;? (quit) ;? 1 ) ; section 20 |