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 committed May 1, 2023
1 parent 3eb8bd2 commit ebde571
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 ebde571

Please sign in to comment.