|
|
|
|
|
by cess11
324 days ago
|
|
Elixir won't allow you to do that: iex(2)> "/home/cess11" * 9
** (ArithmeticError) bad argument in arithmetic expression: "/home/cess11" * 9
:erlang.*("/home/cess11", 9)
iex:2: (file)
Documentation is full of type information:https://hexdocs.pm/elixir/Enum.html#types |
|