Skip to content

Instantly share code, notes, and snippets.

@boraseoksoon
Last active December 28, 2022 20:12
Show Gist options
  • Save boraseoksoon/7a3f020e2fb8314da3885d386899ef2a to your computer and use it in GitHub Desktop.
Save boraseoksoon/7a3f020e2fb8314da3885d386899ef2a to your computer and use it in GitHub Desktop.
call java from clojure
;; https://clojure-doc.org/articles/language/interop/
(doto (java.util.Stack.)
(.push 42)
(.push 13)
(.push 7)) ; ⇒ #<Stack [42, 13, 7]>
(.. (java.util.Date.)
getTime
toString)
(-> (java.util.Date.)
.getTime
.toString)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment