nothing = 1
googolplex = 1
googolVal = 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
googol = 1
function getValues()
zero = 0
for i = 1,100 do
nothing = nothing + 1
googol = ""..googol..""..zero..""
end
for x = 1,googolVal do
googolplex = ""..googolplex.."0"
end
end
function enterToContinue()
print("Press Enter to continue...")
i = io.read()
end
getValues()
start = 1
print("Say googol to see googol, say googolplex to see googolplex.")
print("Warning, May blow up")
awnser = io.read()
if awnser == "googolplex" then
print("WARNING LARGE NUMBER WOULD YOU LIKE TO CONTINUE?? y/n")
awnser2 = io.read()
if awnser2 == "y" then
print(googolplex)
enterToContinue()
end
end
if awnser == "googol" then
print(googol)
enterToContinue()
end
Gogol was working fine before i added Gogolplex but now when i run it nothing happens for a few seconds then it says too long withought yeilding. Lol, is gogolplex just to big for it to print?? pls replyEDIT: the reason im not letting lua print googolval is becuz it says 100x10 or something scientificy












