Why are stack values so far apart in Rust?
When I run this
fn main() {
let x: i32 = 0;
println!("{:p}", &x);
let y: i32 = 1;
println!("{:p}", &y);
}
The values printed are, in decimal, 88 apart. My expectation would be that they would be…