A couple of minor tweaks to already-ported-to-MiniScript projects.

This commit is contained in:
JoeStrout
2023-09-18 07:58:50 -07:00
parent a4b68e423e
commit 95e9d8b2c4
3 changed files with 5 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ end function
// Bonus little feature when running in Mini Micro: display a header bar
// always at the top of the screen.
drawHeaders = function
if version.hostName != "Mini Micro" then return
display(2).mode = displayMode.text; td = display(2)
td.color = text.color; td.backColor = color.black
td.row = 25; td.column = 0

View File

@@ -14,7 +14,7 @@ words.shuffle
responses = ["Right","Correct","Fine","Good!","Check"]
print " " * 33 + "SYNONYM"
print " " * 15 + "CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
print " " * 15 + "Creative Computing Morristown, New Jersey"
print; print; print
print "A synonym of a word means another word in the English"
print "language which has the same or very nearly the same meaning."

View File

@@ -30,4 +30,6 @@ http://www.vintage-basic.net/games.html
#### Porting Notes
(please note any difficulties or challenges in porting here)
- The program begins by switching on `I`, which has not been initialized. We should probably initialize this to 0, though this means the output always begins with the phrase "midnight dreary".
- Though the program contains an END statement (line 999), it is unreachable. The program continues to generate output until it is forcibly interrupted.