Pretty print output on main example

This commit is contained in:
Santiago Pastorino 2018-06-07 14:58:20 -03:00
parent d6ec2289fc
commit 37eaca47b4
No known key found for this signature in database
GPG Key ID: 88C941CDA1D46432

View File

@ -12,5 +12,5 @@ fn main() {
let mut tokens = TokenStream::new();
program.to_tokens(&mut tokens);
println!("{}", tokens);
println!("{:#?}", tokens);
}