Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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