lua math code example

Example 1: how to get a random number in lua

local randomNumber1 = math.random(1, 10) --Returns a number between 1 and 10.
local randomNumber2 = math.random(10) --Also returns a number between 1 and 10.

print(randomNumber1, randomNumber2) --OUTPUT EXAMPLE: "6, 8"

Example 2: lua math.random

local M = math.random(1,2) --Input you number

print(M)

Example 3: how to find pi lua

-- The answer given is horrible dont do that, it has a while true do loop 
-- which will crash most platforms
-- do this

math.pi

-- thats it, thats all there is to finding pi in lua

Tags:

Lua Example