diff options
-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 . .──────────────────────────────────────────────────. . . . . |