Skip to content

Instantly share code, notes, and snippets.

@carcigenicate
Last active October 9, 2017 22:23
Show Gist options
  • Save carcigenicate/28ae93b0c49cc0443a8e1494c1f2fcd4 to your computer and use it in GitHub Desktop.
Save carcigenicate/28ae93b0c49cc0443a8e1494c1f2fcd4 to your computer and use it in GitHub Desktop.
project.clj:
(defproject sample "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.8.0"]
[seesaw "1.4.5"]]
Sample file:
(ns seesaw-sample
(:require [seesaw.core :as sc]))
(let [f (sc/frame :content (sc/label :text "Hello World!"))]
(sc/pack! f)
(sc/show! f))
@carcigenicate
Copy link
Author

Just updated. Messed something up. Tested

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment