1.

What Is Match Operator In Elixir?

Answer»

In elixir, = OPERATOR is match operator.

EXAMPLE:

iex> X = 1

1

iex> x

1

In elixir, = operator is match operator.

Example:

iex> x = 1

1

iex> x

1



Discussion

No Comment Found