erlang - startup script

Posted by demas on Stack Overflow See other posts from Stack Overflow or by demas
Published on 2009-12-08T10:11:42Z Indexed on 2010/05/20 0:00 UTC
Read the original article Hit count: 236

Filed under:

To start my program I do the next sequence:

$ erl
> c(module1).
> c(module2).
> c(modulen).
modulen:start().

Is there any possibility to create script that allow me to launch my program ?

© Stack Overflow or respective owner

Related posts about erlang