diff --git a/_posts/2018-09-01-primitives-in-rust-are-weird.md b/_posts/2018-09-01-primitives-in-rust-are-weird.md index c2b8591..4a7b70e 100644 --- a/_posts/2018-09-01-primitives-in-rust-are-weird.md +++ b/_posts/2018-09-01-primitives-in-rust-are-weird.md @@ -11,7 +11,7 @@ couldn't possibly run: ```rust fn main() { - println("{}", 8.to_string()) + println!("{}", 8.to_string()) } ```