[ create a new paste ] login | about

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

Lua, pasted on Aug 15:
1
2
3
4
5
6
7
8
9
local msg = "hello"
local coolness = function ()
  local foo = "bar"
  print(msg)
  print(bar)
  print(coolness)
end

coolness()


Output:
1
2
3
hello
nil
nil


Create a new paste based on this one


Comments: