Windows Text Viewer in D

Kagamin spam at here.lot
Thu Apr 9 09:33:24 UTC 2026


try
```d
import core.sys.windows.winuser;
pragma(lib, "user32");
int main()
{
	MessageBoxW(null,"hello, world","test",0);
	return 0;
}
```


More information about the Digitalmars-d-learn mailing list