Skip to content

Instantly share code, notes, and snippets.

@marcelog
Created October 9, 2017 20:42
A sample Erlang module
-module(test).
-export([my_fun/1]).
my_fun(X) ->
my_other_fun(X) + 1.
my_other_fun(X) ->
X + 1.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment