== Quote from Travis Boucher ([email protected])'s article > Sean Kelly wrote: > Its harder > to create a memory leak in D then it is to prevent one in C.
void doStuff() {
uint[] foo = new uint[100_000_000];
}
void main() {
while(true) {
doStuff();
}
}
