Skip to content

geetarista/slsw-erlang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

slsw-erlang

These are my notes, scratches, and exercises while going through the Erlang section of Seven Languages in Seven Weeks.

Setup

I just used homebrew to install erlang:

brew install erlang

Compiling/running

A file that defines a module can be compiled and run from the console.

For example, the file day1/basic.erl can be used as follows after entering the console with the erl command:

% compile the module
c(basic).
% => {ok,basic}

% call the mirror function in the basic module
basic:mirror(hello).
% => hello

Resources

Learn more Erlang:

License

The code taken frome the book comes with the following copyright/disclaimer:

Copyrights apply to this source code. You may use the source code in your own projects, however the source code may not be used to create training material, courses, books, articles, and the like. We make no guarantees that this source code is fit for any purpose.

Anything else in this repository is licensed by me under the MIT license. See LICENSE for more information.

About

Notes for Erlang from Seven Languages in Seven Weeks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages