ref: 0283ccf588a5243b2a992d3d726c2f1344c5438a
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; }