|
|
|
|
|
by xscott
287 days ago
|
|
I agree with your point in general, and I'm curious if it's a problem in Lobster. Here's one in Rust: let i = 1;
let j = 1;
print!("i: {:?}\n", !i);
print!("j: {:?}\n", !j);
// pretend there's a lot of code here
// spooky action at a distance
let v = vec![1, 2, 3];
v[i];
You might think those two print statements would print the same value. They do not. |
|