This commit is contained in:
Jasper Ras 2026-01-17 11:37:01 +01:00
parent 10b29ad9cb
commit e1246d346d
10 changed files with 60 additions and 0 deletions

5
ch09/outofbounds.rs Normal file
View file

@ -0,0 +1,5 @@
fn main() {
let a = vec![1, 2, 3];
a[99];
}