10 lines
252 B
Lua
10 lines
252 B
Lua
io.write("Pick a number: ")
|
|
local number = io.read("*n")
|
|
local randnum = math.random(1, number)
|
|
print("The number is ", randnum)
|
|
-- ask to rerun script
|
|
print("Run again (y/n)?")
|
|
local cmd = io.read()
|
|
if cmd == "y" then
|
|
dofile("randTest.lua")
|
|
else end |