├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── gleam.toml ├── manifest.toml ├── src └── tom.gleam └── test └── tom_test.gleam /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/README.md -------------------------------------------------------------------------------- /gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/gleam.toml -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/manifest.toml -------------------------------------------------------------------------------- /src/tom.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/src/tom.gleam -------------------------------------------------------------------------------- /test/tom_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpil/tom/HEAD/test/tom_test.gleam --------------------------------------------------------------------------------