Skip to content

Commit

Permalink
Improve transparency of 5_i32 versus 5i32
Browse files Browse the repository at this point in the history
  • Loading branch information
wparad authored May 1, 2023
1 parent 3eb8bd2 commit 99971ea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/scope/borrow.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ fn borrow_i32(borrowed_i32: &i32) {
fn main() {
// Create a boxed i32, and a stacked i32
// Remember: numbers can have arbitrary underscores added for readibility
// 5_i32 is the same as 5i32
let boxed_i32 = Box::new(5_i32);
let stacked_i32 = 6_i32;
Expand Down

0 comments on commit 99971ea

Please sign in to comment.