Different Ways to Run Your Program
Erlang programs are stored in modules. Once you have written your program, you have to compile it before you can run it. Alternatively, you can run your program directly without compiling it by running an escript.
The next sections show how to compile and run a couple of programs in a number of ways. The programs are slightly different, and the ways in which we start and stop them differ.
The first program, hello.erl
, just prints
“Hello world.” It’s not responsible for starting
or stopping the system, and it does not need to access any
command-line arguments. By way of contrast, the second
program, fac
, needs to access the command-line arguments.
Here’s our basic program. It writes the string containing ...
Get Programming Erlang, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.