[ create a new paste ] login | about

Link: http://codepad.org/f9RIIk8Q    [ raw code | output | fork ]

Lua, pasted on Jan 24:
1
2
3
4
5
6
7
8
9
10
11
point = {x = 7,y = 8,z = 35,p = 13}

local function iDK(message)
print(point.x/point.y)
print("I like the number",point.z)
print("I don't the number",point.p)
print(message)

end

iDK("Random Math")


Output:
1
2
3
4
0.875
I like the number	35
I don't the number	13
Random Math


Create a new paste based on this one


Comments: