Population
In order to keep track of the individual programs we define a population.
Nadezhda
Little more is needed for our Nadezhda problem then a vector of Programs. We
wrap a Vec<Program> in our Population.
1 pub struct Population(pub Vec<Program>);
Exercises
- Implement a way to create a Nadezhda population.