rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/erlang
2019-10-21 10:18:17 +02:00

7 lines
190 B
Plaintext

%%% 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.