Skip to content

Instantly share code, notes, and snippets.

@brake
Created September 15, 2016 21:25
Show Gist options
  • Select an option

  • Save brake/98e3c8b575f54ac65d7ee240aeaf912e to your computer and use it in GitHub Desktop.

Select an option

Save brake/98e3c8b575f54ac65d7ee240aeaf912e to your computer and use it in GitHub Desktop.
Message box in Clojure
(ns alert.core
(:import (javax.swing JOptionPane)))
(defn alert
[^String msg]
(JOptionPane/showMessageDialog nil msg))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment