macro_rules! hsh_print {
    ($($arg:tt)*) => { ... };
}
Expand description

This macro prints the given arguments to the console.

Example

extern crate hsh;
use hsh::{ hsh_print };

hsh_print!("Hello {}", "world");  // This will print "Hello world"