Rust VLA implementation
Basic usage
```rust use vla::Vla;
let vla = Vla::new(10); vla[0] = 0; assert_eq!(vla[0], vla[1]); ```