simendsjo wrote: > I have very limited experience with D and haven't taken the time to > understood the code, but here are > some easy nitpicks :) > ---- > imports: Should stuff in core really depend on phobos? Isn't much of the > reason for core to allow > different "standard" libraries like tango? > [snip.]
Actually the code doesn't depend on phobos. You can change the set of imports to: import core.memory, core.exception, core.stdc.string; static import core.stdc.stdlib; It will still compile. Good point though. That needs to be changed. Timon