/ErlangOtpTemplate

A sample Erlang OTP Template

Primary LanguageErlang

This is a simple template for an OTP application

Compiling: 
erlc -o ebin src/*.erl

Running: 
erl -pa ebin
application:start(myapp).
myapp_server:test_call("Call").
myapp_server:test_cast("Cast").