import std.stdio;
mixin template Test() {
writeln("Hello D People!");
}
void main() {
mixin Test;
}
I would have posted to the main newsgroup but I thought that
maybe I'm missing something.
Thanks.
import std.stdio;
mixin template Test() {
writeln("Hello D People!");
}
void main() {
mixin Test;
}
I would have posted to the main newsgroup but I thought that
maybe I'm missing something.
Thanks.