Newer
Older
webview-d / examples / basic / source / app.d
@XXIV XXIV on 28 Sep 2023 197 bytes update basic example to use dub
  1. import webview;
  2.  
  3. void main()
  4. {
  5. WebView w = WebView(false, null);
  6. w.setTitle("Basic Example");
  7. w.setSize(480, 320, WindowSizeHint.None);
  8. w.setHtml("Thanks for using webview!");
  9. w.run();
  10. }