An open API service indexing awesome lists of open source software.

https://github.com/thebeachmaster/erlang-starter

Simplest Erlang program you could write
https://github.com/thebeachmaster/erlang-starter

Last synced: 13 days ago
JSON representation

Simplest Erlang program you could write

Awesome Lists containing this project

README

          

# erlang-starter

Simplest Erlang program you could write.

## Getting Started
- Set up Erlang as detailed [here](http://www.erlang.org/downloads).

## Compiling

- In the app directory run the following command:
```bash
$ erl
$ 1> c(myapp).
$ 2> myapp:greet().
$ 3> myapp:add(7824792,4208429).
```