nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/erlang

7 lines
190 B
Text
Raw Normal View History

2019-03-12 13:49:49 +01:00
%%% Geometry module.
-module(geometry).
-export([area/1]).
%% Compute rectangle and circle area.
area({rectangle, Width, Ht}) -> Width * Ht;
area({circle, R}) -> 3.14159 * R * R.