xxxxxxxxxx
import std.logger : info;
int count = 0;
void main() {
info(foo());
}
auto foo() {
info("In foo ", ++count);
return "Hello, world.";