Skip to content

Instantly share code, notes, and snippets.

@mnzk
Created April 7, 2012 03:18
Show Gist options
  • Save mnzk/2324787 to your computer and use it in GitHub Desktop.
Save mnzk/2324787 to your computer and use it in GitHub Desktop.
seesaw-frame-size.clj
;; こうじゃなくて
(and (not size)
(or width height)) (.setSize (or width 100) (or height 100))
;; こうじゃないか?
(and (not size)
(not (and width height))) (.setSize (or width 100) (or height 100))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment