diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-03-14 10:42:51 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-03-14 10:42:51 -0700 |
commit | 7b38bc8ece46b92855c6363fde53d59011d9f0a4 (patch) | |
tree | 9b44735a634b48292da92c170f4c002200864e5a /sandbox | |
parent | 00868a186b1dbc424fb9ace644fd4ea7d38f22aa (diff) | |
download | mu-7b38bc8ece46b92855c6363fde53d59011d9f0a4.tar.gz |
3795
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/005-sandbox.mu | 4 | ||||
-rw-r--r-- | sandbox/008-sandbox-edit.mu | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sandbox/005-sandbox.mu b/sandbox/005-sandbox.mu index d5bfbd62..528ca5ce 100644 --- a/sandbox/005-sandbox.mu +++ b/sandbox/005-sandbox.mu @@ -641,7 +641,7 @@ scenario run-instruction-manages-screen-per-sandbox [ assume-resources [ ] # sandbox editor contains an instruction - env:&:environment <- new-programming-environment resources, screen, [print-integer screen, 4] # contents of sandbox editor + env:&:environment <- new-programming-environment resources, screen, [print screen, 4] # contents of sandbox editor # run the code in the editor assume-console [ press F4 @@ -655,7 +655,7 @@ scenario run-instruction-manages-screen-per-sandbox [ . . .──────────────────────────────────────────────────. .0 edit copy delete . - .print-integer screen, 4 . + .print screen, 4 . .screen: . . .4 . . . . . . diff --git a/sandbox/008-sandbox-edit.mu b/sandbox/008-sandbox-edit.mu index ff45d87b..cb19ebc4 100644 --- a/sandbox/008-sandbox-edit.mu +++ b/sandbox/008-sandbox-edit.mu @@ -163,7 +163,7 @@ scenario sandbox-with-print-can-be-edited [ assume-resources [ ] # right editor contains a print instruction - env:&:environment <- new-programming-environment resources, screen, [print-integer screen, 4] + env:&:environment <- new-programming-environment resources, screen, [print screen, 4] # run the sandbox assume-console [ press F4 @@ -174,7 +174,7 @@ scenario sandbox-with-print-can-be-edited [ . . .──────────────────────────────────────────────────. .0 edit copy delete . - .print-integer screen, 4 . + .print screen, 4 . .screen: . . .4 . . . . . . @@ -193,7 +193,7 @@ scenario sandbox-with-print-can-be-edited [ ] screen-should-contain [ . run (F4) . - .print-integer screen, 4 . + .print screen, 4 . .──────────────────────────────────────────────────. . . . . |