We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e2d0c commit 8a57638Copy full SHA for 8a57638
00_Alternate_Languages/82_Stars/MiniScript/stars.ms
@@ -11,16 +11,16 @@ instructions = function
11
print
12
end function
13
14
-print " " * 34 + "STARS"
15
-print " " * 15 + "CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
+print " " * 34 + "Stars"
+print " " * 15 + "Creative Computing Morristown, New Jersey"
16
print; print; print
17
18
-ans = input("Do you want instructions? ").lower
+ans = input("Do you want instructions? ").lower + " "
19
if ans[0] == "y" then
20
instructions
21
end if
22
23
-while 1
+while true
24
25
print "OK, I am thinking of a number, start guessing."
26
starNum = floor(rnd * kMaxNum) + 1
0 commit comments