General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
p11
ThePrimeTime
comments
Comments by "p11" (@porky1118) on "Nim 2.0 Release! | Prime News" video.
8:00 That let assignment is nothing new. It also works like this in rust.
3
8:10 Not by retunging stuff from expressions. Just try it in rust. let x; // not mutable if true { x = 1; } else { x = 2; } println!("{x}"); x = 3; // error: x needs to be mutable
2