Documentation for this module may be created at Module:Numbers/doc
local p = {}; function p.CircleArea(frame) r = frame.args[1] return math.pi * (r * r) end function p.pi(frame) return math.pi end return p;