Skip to content

Instantly share code, notes, and snippets.

View titonbarua's full-sized avatar

Titon Barua titonbarua

View GitHub Profile
@yogthos
yogthos / core.cljs
Last active March 13, 2023 19:19
Gjs ClojureScript example
(ns gjs-example.core)
(defn main []
(set! (-> js/imports .-gi .-versions .-Gtk) "3.0")
(let [Gtk (doto (-> js/imports .-gi .-Gtk) (.init nil))
window (Gtk.Window.
(clj->js
{:type (-> Gtk .-WindowType .-TOPLEVEL)
:title "A default title"
:default_width 300