Skip to content

Instantly share code, notes, and snippets.

@alcidesfp
Created May 4, 2012 01:42
Show Gist options
  • Save alcidesfp/2591156 to your computer and use it in GitHub Desktop.
Save alcidesfp/2591156 to your computer and use it in GitHub Desktop.
Snippet Swing Clojure
(ns demo1 (:import (javax.swing JFrame JLabel)))
(doto (JFrame. "Hello")
(.add (JLabel. "Hello, World!"))
(.pack)
(.setDefaultCloseOperation JFrame/EXIT_ON_CLOSE)
(.setVisible true))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment