talc/README.md

27 lines
558 B
Markdown
Raw Permalink Normal View History

2024-12-25 17:53:56 +00:00
# Talc
2024-03-30 16:21:09 +00:00
2024-12-25 17:53:56 +00:00
Talc is a dynamically-typed functional programming language designed primarily
for use as a terminal calculator.
2024-03-30 16:21:09 +00:00
2024-12-25 17:53:56 +00:00
## Installation
Talc is written in Rust and requires at least version 1.81 to compile.
```bash
2024-11-14 19:16:33 +00:00
cargo install --profile release-opt --path talc-bin
2024-03-30 16:21:09 +00:00
```
2024-12-25 17:53:56 +00:00
Read the documentation for more info.
## Documentation
Documentation is available online at [TODO](TODO).
To build the documentation locally, install
[mdBook](https://rust-lang.github.io/mdBook/) and run the following from the
`docs/` directory:
```bash
mdbook serve --open
```