Basic Calculations
Let’s have a look at some basic calculations with the types integer (integer numbers)
and float (real numbers):
iex> 1 + 1
2
iex> 1.1 + 1
2.1
iex> 23 / 3
7.666666666666667
|
You can use the
|
Let’s have a look at some basic calculations with the types integer (integer numbers)
and float (real numbers):
iex> 1 + 1
2
iex> 1.1 + 1
2.1
iex> 23 / 3
7.666666666666667
|
You can use the
|