1. 1 year ago

    The Erlang Shell

    One option to running the Erlang shell when your code is in ./src, including files in ./include, and building to ./ebin is to run erl from ./src as such.

    erl -pa ../ebin

    All your modules are then local and can be accessed. You can include records with rr(module).

    Thanks MononcQc on #erlang.

    Erlang