Add first cut at Java interop

This commit is contained in:
Colin Jones
2011-07-08 15:57:44 -05:00
parent d7d54f1a08
commit fb3f05e2c6
3 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
(meditations
"You may have done more with Java than you know"
(= __ (class "warfare")) ; hint: try typing (javadoc "warfare") in the REPL
"The dot signifies easy and direct Java interoperation"
(= __ (.toUpperCase "select * from"))
"But instance method calls are very different from normal functions"
(= ["SELECT" "FROM" "WHERE"] (map ___ ["select" "from" "where"]))
"Constructing might be harder than breaking"
(= 10 (let [latch (java.util.concurrent.CountDownLatch. __)]
(.getCount latch)))
"Static methods are slashing prices!"
(== __ (Math/pow 2 10)))