rant 4.0.0-alpha.21

The Rant procedural templating language
Documentation

Crates.io Docs.rs Discord

Rant is a high-level procedural templating language with a diverse toolset for easily creating dynamic code templates, game dialogue, stories, name generators, test data, and much more.


NOTICE:

This project is in alpha. Expect to see broken/missing features.

While I encourage you to try it out and give feedback, please don't 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 is breaking.


Introducing Rant 4

Rant 4 is a complete redesign and reimplementation of the Rant language, written in Rust. It's designed with usability in mind for 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!

Why Rant?

🧰 Painless API Rant's API is designed to be as straightforward as possible. Integrating Rant into your project only takes a few lines of code.

💻 Cross-Platform Write once, run anywhere-- Rant code is fully portable across all supported platforms.

🎲 Built with ♥ for RNG Enjoy a wide array of built-in utilities for generating random numbers, strings, booleans, lists, list subsets, and much more. The internal RNG can be seeded before execution to produce deterministic outputs.

🔱 Advanced Branching Fine-tune branching behavior with a multitude of configuration options and branch selection modes for iterative, random, and weighted selection.

🎨 Dynamic Variable System Inspired by other popular scripting languages, Rant's dynamic variable system ergonomically supports common primitives, collection types, closures, and more.

🖨 Print Semantics Rant is all about "printing": each lexical scope has an output to add values ("print") to, which then prints itself to the parent output, and so on. This lets you easily build strings and collections from multiple parts with minimal code.

🧬 Delightful Combinatorics Perform nested mappings, filters, zips, combinations, and more with Rant's intuitive function composition syntax.

🎛 Automatic Formatting Passively format text output with automatic capitalization, whitespace normalization, and number formatting.

🧩 Modules Create libraries of Rant functions and share them between your programs using Rant's simple module system.

📚 Rant Standard Library A comprehensive standard library provides the tools needed to rapidly iterate on your ideas.

Getting started

CLI

Rant's CLI can run Rant code from files or the command line. Install it from Cargo with:

$ cargo install rant --version 4.0.0-alpha.21 --features cli

Then run it:

$ rant

Library

Add Rant to your Cargo.toml:

[dependencies]
rant = "*"

You can run a Rant program with just a few lines of code:

use rant::Rant;
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
  // Create a default Rant context
  let mut rant = Rant::new();

  // Compile a simple program
  let program = rant.compile_quiet(r#"
  [$greet:name] {
    {Hello|Hi|Hey} <name>!
  }
  [greet:world]
  "#)?;

  // Run the program and print the output
  let output = rant.run(&program)?;
  println!("{}", output);

  Ok(())
}

Examples

This repository contains a directory of example programs written in Rant for you to learn from. Check them out!

Documentation

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.

Changelog

The changelog is updated constantly throughout the development process, providing a complete summary of upcoming changes at a glance even before the next release.

MSRV

The minimum supported Rust version is 1.50.0.

License

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.