%%% Geometry module. -module(geometry). -export().
%% Compute rectangle and circle area. area({rectangle, Width, Ht}) -> Width * Ht; area({circle, R}) -> 3.14159 * R * R.
[Validate]
Generated with the Darkfish Rdoc Generator 2.