Alchemy4Elixir

Modulo

What function in Elixir helps us compute the modulo remainer of an integer division.
Hint: h Integer.mod/2

   Integer._(3, 3) == 0
   Integer._(5, 2) == 1
Passed 0/2