ref: 87e325f2c9792ece2583761ca26c57318a698be9
dir: /Modules/persons.b/
implement Persons;
include "persons.m";
population: int;
init() {
population = 0;
}
getpop(): int {
return population;
}
mkperson(): ref Person {
population++;
return ref Person;
}
Person.stringify(p: self ref Person): string {
return p.name;
}