Last active
October 9, 2017 22:23
-
-
Save carcigenicate/28ae93b0c49cc0443a8e1494c1f2fcd4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just updated. Messed something up. Tested