General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
p11
ThePrimeTime
comments
Comments by "p11" (@porky1118) on "Stop Celebrating Incompetence" video.
11:00 Rust: let mut sum = 0; let Ok(file) = File::open(filename) else { return; } for line in BufReader::new(file).lines() { let Ok(line) = line else { return; } let num: i32 = line.parse().unwrap(); sum += num; } Something like that...
1