/monies

Gleam library for working with monies

Primary LanguageGleamApache License 2.0Apache-2.0

monies

WIP gleam library for working with monies

Package Version Hex Docs

gleam add monies
import gleam/io
import monies

pub fn main() {
  let regular_float_test = 0.1 +. 0.2
  io.debug(regular_float_test)
  let fixed_point_arithmetic_test = monies.add(0.1, 0.2)
  io.debug(fixed_point_arithmetic_test)
}

Further documentation can be found at https://hexdocs.pm/monies.

Development

gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell