1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-12 08:06:04 +02:00

add 095_memory_allocation.patch

This commit is contained in:
Sean Aubin 2023-03-08 13:21:48 -05:00
parent bb54604e17
commit 1513d2cea4

View File

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