In case someone wants to figure it out and start at home, then go through these steps :
-
Install erlang in your machine Click this instruction.
-
Enter into erl: write in your console
erl. -
Compile main.erl file:
c(main). -
Users = main:get_users(). -
Done now you can use functions where user list is used
For example:
main:split_by_age(Users). -
Come again!