random number test in Lua - E and J helped

This commit is contained in:
2026-05-05 10:16:00 -07:00
parent 4c74a07eb6
commit 54666fd55c
4 changed files with 36 additions and 0 deletions

10
lua/randTest.lua Normal file
View File

@@ -0,0 +1,10 @@
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