add 095_memory_allocation.patch

This commit is contained in:
Sean Aubin 2023-03-08 13:21:48 -05:00
parent 551a36f7c9
commit a218425ee5

View file

@ -0,0 +1,4 @@
65c65
< var avg: []f64 = {};
---
> var avg: []f64 = try allocator.alloc(f64, arr.len);