variadic_arguments 0.1.2

Implements variadic arguments into Rust.
Documentation
1
2
3
4
5
6
7
8
9
fn main()
{
    // no_std feature
    println!("cargo::rustc-check-cfg=cfg(no_std)");
    if cfg!(feature = "no_std")
    {
        println!("cargo::rustc-cfg=no_std");
    }
}