Jump to content

Module:Sandbox/AngryBiceps

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by MarekKocka (talk | contribs) at 10:54, 27 March 2022 (Created page with 'function nahodneFakty() local pocetVybranychFaktov = 4 local vystup local fakty = { "Text1", "Text2", "Text3", "Text4", "Text5", "Text6", "Text7", "Text8", } for i=0,pocetVybranychFaktov,1 do pocet = #fakty nahodneCislo = math.random(1, pocet) vystup=fakty[nahodneCislo] return("vystup") end end'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
function nahodneFakty()
	local pocetVybranychFaktov = 4
	local vystup
	local fakty = {
		"Text1",
		"Text2",
		"Text3",
		"Text4",
		"Text5",
		"Text6",
		"Text7",
		"Text8",
	}
	
    for i=0,pocetVybranychFaktov,1 do 
		pocet = #fakty
		nahodneCislo = math.random(1, pocet)
		vystup=fakty[nahodneCislo]
		return("vystup")
	end
end