idk what got added but im committing just to be safe

This commit is contained in:
endernon 2024-12-02 23:50:33 +00:00
parent db5983659f
commit e0e68e5b6a

View file

@ -8,6 +8,7 @@ fn main() {
let mut safecount = 0;
// for each line
for i in lines {
println!("{i}");
// for each line, split into a Vec<String> of the values
let mut frfrstr: Vec<String> = i.split_whitespace().map(|s| s.parse().unwrap()).collect();