collections of useful macros

example

```rust use useful_macro::*; let arg = args!(); println!("{:?}",arg);

let s = input!(); println!("{:?}",s);

let p = powf!(2.,2.); println!("{:?}",p);

let s = splittovec!("aa.bb","."); println!("{:?}",s); ```