ref: 5bd50f13c315024164a221eb5a86edabf412b4d1
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;
}