move memory allocation example to 095

This commit is contained in:
Sean Aubin 2023-03-08 12:51:07 -05:00
parent f01d9ba92d
commit f08af9b242
2 changed files with 4 additions and 4 deletions

View file

@ -392,10 +392,6 @@ const exercises = [_]Exercise{
.main_file = "076_sentinels.zig",
.output = "Array:123056. Many-item pointer:123.",
},
.{
.main_file = "076a_memory_allocation.zig",
.output = "Running Average: 0.30 0.25 0.20 0.18 0.22",
},
.{
.main_file = "077_sentinels2.zig",
.output = "Weird Data!",
@ -487,6 +483,10 @@ const exercises = [_]Exercise{
.main_file = "095_for_loops.zig",
.output = "1 2 4 7 8 11 13 14 16 17 19",
},
.{
.main_file = "096_memory_allocation.zig",
.output = "Running Average: 0.30 0.25 0.20 0.18 0.22",
},
.{
.main_file = "999_the_end.zig",
.output = "\nThis is the end for now!\nWe hope you had fun and were able to learn a lot, so visit us again when the next exercises are available.",