cargo-rx 0.3.0

A simple fuzzy finder that allows you to search and run examples from the command line. It comes with the `rx` command.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This script demonstrates a [Multi-file example].
//!
//! Note that Cargo supports adding sub-directories
//! inside of the *examples/* folder, and looks for
//! a `main.rs` inside of them to build the example.
//!
//! [Multi-file example]: https://doc.bccnsoft.com/docs/rust-1.36.0-docs-html/edition-guide/rust-2018/cargo-and-crates-io/multi-file-examples.html
//!
mod utils;

fn main() {
    utils::print_hello();
    println!("this is a multi-file example!");
}