On Thursday, 9 April 2026 at 09:33:24 UTC, Kagamin wrote:
try
```d
import core.sys.windows.winuser;
pragma(lib, "user32");
int main()
{
MessageBoxW(null,"hello, world","test",0);
return 0;
}
```
This actually compiled and ran w/o errors. Thank you.
Could you show something simple and similar that would open a window?
