collections of useful macros
example
use *;
//get argument and into Vec<String>
let arg = args!;
println!;
//get input and into String
let s = input!;
println!;
//power of two f64 number
let p = powf!;
println!;
//split a:&str by b:&str and collect into Vec<String>
let s = split_to_vec!;
println!;