Skip to content

Commit

Permalink
Merge pull request #1707 from wparad/patch-1
Browse files Browse the repository at this point in the history
Improve transparency of 5_i32 versus 5i32
  • Loading branch information
marioidival authored Aug 22, 2023
2 parents f7b6860 + ebde571 commit c954202
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scope/borrow.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ fn borrow_i32(borrowed_i32: &i32) {
}
fn main() {
// Create a boxed i32, and a stacked i32
// Create a boxed i32 in the heap, and a i32 on the stack
// Remember: numbers can have arbitrary underscores added for readability
// 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 c954202

Please sign in to comment.