Rant is a high-level language for procedural templating, providing a powerful toolset for easily creating code templates, dynamic game dialogue, stories, name generators, test data, and much more.
This project is in alpha. Expect to see broken/missing features.
While I encourage you to try it out and give feedback, please do not use in production environments until a stable version is released.
Features may appear or disappear at any time for any reason. Assume that every alpha release will be breaking.
Rant 4 is a complete redesign and reimplementation from the ground up, written in Rust. It's designed around the needs of everyone-- programmers, writers, and everyone in-between!
Rant is basically the opposite of Regex: just as a regular expression compares inputs to a pattern, Rant generates matching outputs from a pattern!
Consider this regex:
```regex
(Hey|Hi|Hello) world! ```
The Rant equivalent is nearly identical:
```rant {Hey|Hi|Hello} world!
```
Rant comes with a CLI tool that includes a REPL. You can install and run it with:
sh
$ cargo install rant --version=4.0.0-alpha.13 --all-features
$ rant
Add Rant to your Cargo.toml
:
toml
[dependencies]
rant = "*"
You can run a Rant program with just a few lines of code:
```rust use rant::Rant; use std::error::Error;
fn main() -> Result<(), Box
// Compile a simple program
let program = rant.compile_quiet(r#"
[$greet:name] {
{Hello|Hi|Hey}
// Run the program and print the output let output = rant.run(&program)?; println!("{}", output);
Ok(()) } ```
The latest reference documentation can be found at docs.rant-lang.org.
Since Rant 4 is early in development, some documentation may be outdated/incomplete, but it is actively updated to ensure that it reflects current features with reasonable accuracy.
The changelog is updated constantly throughout the development process, providing a complete summary of upcoming changes at a glance even before the next release.
Rant is distributed under the GNU Affero General Public License v3. See LICENSE for more details.
An alternative, commercial license is planned for the future.