https://github.com/ignavan39/erlang-tutorial-recursive-functions
Erlang tutorial for me
https://github.com/ignavan39/erlang-tutorial-recursive-functions
erlang recursive-functions tutorial
Last synced: 3 months ago
JSON representation
Erlang tutorial for me
- Host: GitHub
- URL: https://github.com/ignavan39/erlang-tutorial-recursive-functions
- Owner: ignavan39
- Created: 2020-11-11T09:03:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:51:24.000Z (about 2 years ago)
- Last Synced: 2025-09-24T08:49:37.237Z (4 months ago)
- Topics: erlang, recursive-functions, tutorial
- Language: Erlang
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Just my attempt to learn the Erlang language
------
In case someone wants to figure it out and start at home, then go through these steps :
1. Install erlang in your machine [Click this instruction](https://medium.com/erlang-central/erlang-quick-install-9c5dcaa5b634).
2. Enter into erl: write in your console `erl`.
3. Compile main.erl file: `c(main).`
4. `Users = main:get_users().`
5. Done now you can use functions where user list is used
For example:
`
main:split_by_age(Users).
`
6. Come again!