Created
September 15, 2016 21:25
-
-
Save brake/98e3c8b575f54ac65d7ee240aeaf912e to your computer and use it in GitHub Desktop.
Message box in Clojure
This file contains hidden or 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
| (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