mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-02-05 03:17:03 -08:00
A couple of minor tweaks to already-ported-to-MiniScript projects.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user