bug fixed! first working version

This commit is contained in:
Sander Hautvast 2022-10-30 11:55:15 +01:00
parent 74baede692
commit ccf800340a

View file

@ -24,7 +24,7 @@ impl Record {
let record_length: u16 = self.values.iter()
.map(|v| v.len())
.sum();
record_length
record_length+1
}
}