Try It!

Run some MiniScript code right in your browser!

1
2
3
4
5
6
7
8
9
10
11
12
// Enter/edit your MiniScript code here.
// Then click the Run Script button below to make it go!
countdown = function(n)
for i in range(n,1)
print i + "..."
wait
end for
end function
s = input("Count down from: ")
countdown val(s)
print "Lift off!"
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

C 

Help & Information