Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

SumList

This code corresponding to the Ignite, Trilha Elixir lab.

The project simulates the sum of the numbers like a calculator.

Compilation, tests, coverages and runs

$ cd course-rocketseat-elixir/chapter-i/module-1/sum_list
$ mix compile
$ mix test
$ mix test --cover
$ iex -S mix

How to use?

# sum list
iex> SumList.call([1, 2, 3])