Skip to content

Commit

Permalink
Fix diff not passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfpk committed Apr 23, 2023
1 parent 5dff21f commit 29c2371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/10_macros_calling_macros/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ macro_rules! digit {
fn main() {
let my_number = number!(nine three seven two zero).parse::<u32>().unwrap();
let my_other_number = number!(one two four six eight zero).parse::<u32>().unwrap();
println!("{}", my_number + my_other_number);
println!("{}", my_number + my_other_number); // = 218400
}

0 comments on commit 29c2371

Please sign in to comment.