Skip to content

Commit

Permalink
A couple of minor tweaks to already-ported-to-MiniScript projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeStrout committed Sep 18, 2023
1 parent a4b68e4 commit 95e9d8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 00_Alternate_Languages/85_Synonym/MiniScript/synonym.ms
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
4 changes: 3 additions & 1 deletion 70_Poetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 95e9d8b

Please sign in to comment.