Someone will get here no doubt soon. In the meantime you can get the source via mercurial download system and compile and install it with the "dsss" system so you must download and install both of these first.
Then dsss build and dsss install supposedly gets it installed (I am not happy that I have got this right yet.
Then there are some examples called "dwt-samples" which you can download and try and here is a small program to try also.
copy it into a file called "main.d" and see if you can compile or build it -I hav'nt been able to yet so I'll change this when I do
module main;
import dwt.widgets.Display; import dwt.widgets.Shell;
void main () {
Display display = new Display; Shell shell = new Shell(display);
shell.setText = "Hello DWT World"; shell.open;
while (!shell.isDisposed)
if (!display.readAndDispatch)
display.sleep;
display.dispose;
}
