Answers for "float to int elixir"

0

float to int elixir

iex> trunc(2.3)
2
iex> trunc(-2.3)
-2
Posted by: Guest on February-07-2021

Browse Popular Code Answers by Language