Made a start with the OO interface to racket-webview

This commit is contained in:
2026-03-09 11:54:23 +01:00
parent 0b3f806aac
commit 6080f4f66b

21
racket-wv.rkt Normal file
View File

@@ -0,0 +1,21 @@
#lang racket/base
(require "racket-webview.rkt"
racket/class
)
(provide wv-window%
)
(define wv-window%
(class object%
(init-field profile
[settings #f]
[parent #f]
[title "Racket Webview Window"]
)