On Sunday, 6 September 2015 at 14:36:53 UTC, chris stevens wrote:
- dynamic creation of classes/structs at runtime.

You have Object.factory for this. You can also use a custom factory based on string comparison. (with some: static if(condition) return new This; else static if(otherCondition) return new That; etc).

- dynamic compilation of code files at runtime

use std.process to call a compiler.

- some basic code creation tools

if you mean to generate code as string, writing them to a file, of course it will work in D.

Reply via email to