rust-template-example 0.1.5

An example showcasing the usage of https://github.com/PRO-2684/rust-template.
Documentation
1
2
3
4
5
6
7
8
9
10
#![warn(clippy::all, clippy::nursery, clippy::pedantic, clippy::cargo)]

use rust_template_example::add;

fn main() {
    let left = 2;
    let right = 2;
    let result = add(left, right);
    println!("The sum of {left} and {right} is {result}");
}