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
- Host: GitHub
- URL: https://github.com/timatooth/toothmath
- Owner: timatooth
- Created: 2024-12-08T03:40:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-08T04:42:49.000Z (over 1 year ago)
- Last Synced: 2025-09-27T17:36:37.448Z (8 months ago)
- Language: Elixir
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toothmath
**A simple fractional math operations library**
[](https://github.com/timatooth/toothmath/actions/workflows/elixir.yml)
[](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"}
])
```