Hello guys,
I'm a new user of opencomputers and I met a problem :
I edited a prgm :
password :
local term = require("term")
function begin()
print("hello customer")
print("enter password")
password = io.read()
if password == "password" then
else
begin()
end
end
begin()
My program is correct, I can run it but I wanted to set it on the boot so the customer must know the password to use the computer. How can I do that ?