echo
Rust macro echo!
and echon!
as a shorthand for println!("{}"...)
and print!("{}"...)
.
Usage
To use this library, add the following to your Cargo.toml
file:
[dependencies]
echo = "*"
You can then use macro echo!
and echon!
to print space-separated values
with or without newline, similar to Linux echo
and echo -n
commands.
extern crate echo;
License
MIT