Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
-- This file:
-- http://angg.twu.net/LUA/square-cube.lua.html
-- http://angg.twu.net/LUA/square-cube.lua

square = function (a) return a*a   end
cube   = function (a) return a*a*a end

--[[
* (eepitch-lua51)
* (eepitch-kill)
* (eepitch-lua51)

dofile "square-cube.lua"

print(square)
print(cube)
print(square(5))
print(cube(5))

--]]