Packages

An OTP library

Retired package: Release invalid - published by error.

Current section

Files

Jump to
mylib src mylib.erl
Raw

src/mylib.erl

-module(mylib).
%% API exports
-export([add/2]).
%%====================================================================
%% API functions
add(A, B) -> A + B.
%%====================================================================
%%====================================================================
%% Internal functions
%%====================================================================