std-macro-extensions 1.0.1

A collection of macro extensions for Rust's standard library data structures, simplifying the creation and manipulation of common collections such as HashMap, Vec, and more.
Documentation
use crate::*;

#[test]
fn test_cout() {
    let name: &str = "Alice";
    let age: i32 = 30;
    cout!("Name: {}, Age: {}\n", name, age);
}

#[test]
fn test_endl() {
    endl!();
}

#[test]
fn test_cout_endl() {
    let name: &str = "Alice";
    let age: i32 = 30;
    cout_endl!("Name: {}, Age: {}\n", name, age);
}