[ create a new paste ] login | about

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

Lua, pasted on Jan 24:
1
2
3
4
5
6
7
8
9
10
11
12
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 like the number",point.p)
print(point.y/point.p*point.z)
print(message)

end

iDK("Random Math")


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


Create a new paste based on this one


Comments: