An open API service indexing awesome lists of open source software.

https://github.com/timatooth/toothmath

Primary school level Elixir math code functions
https://github.com/timatooth/toothmath

Last synced: 4 months ago
JSON representation

Primary school level Elixir math code functions

Awesome Lists containing this project

README

          

# Toothmath

**A simple fractional math operations library**

[![Elixir CI](https://github.com/timatooth/toothmath/actions/workflows/elixir.yml/badge.svg?branch=main)](https://github.com/timatooth/toothmath/actions/workflows/elixir.yml)

[![Run in Livebook](https://livebook.dev/badge/v1/blue.svg)](https://livebook.dev/run?url=https%3A%2F%2Fraw.githubusercontent.com%2Ftimatooth%2Ftoothmath%2Frefs%2Fheads%2Fmain%2Fusage-demo.livemd)

Documentation can be read over on
[HexDocs](https://hexdocs.pm/toothmath/)

## Installation

The package can be installed
by adding `toothmath` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:toothmath, "~> 0.1.0"}
]
end
```

or from a script

```elixir
Mix.install([
{:toothmath, "~> 0.1.0"}
])
```