#typing #hard #println #print #o1 #o2 #o3

puts

Typing println!('{:?} {:?} {:?}', o1, o2, o3) is too hard. puts!(o1, o2, o3)

3 releases

Uses old Rust 2015

0.1.2 May 14, 2016
0.1.1 May 14, 2016
0.1.0 May 14, 2016

#8 in #hard

MIT license

2KB

puts!

Often times you want to print something in rust and have to type not 1, not 2, not 3, but 9 consecutive punctuation characters to do so!

That's insane. So I made puts!

Instead of:

println!("{:?} {:?}", object);

it's now

puts!(object1, object2)

just make sure to add

#[macro_use(puts)]
extern crate puts;

in your project.

No runtime deps