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
- Host: GitHub
- URL: https://github.com/thebeachmaster/erlang-starter
- Owner: TheBeachMaster
- License: apache-2.0
- Created: 2018-03-18T17:31:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T17:54:00.000Z (over 7 years ago)
- Last Synced: 2025-09-12T01:30:24.760Z (about 1 month ago)
- Language: Erlang
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).
```