Created
September 22, 2017 02:56
-
-
Save mrcnc/4700c43624d10eb27cf8d37bb578d8f9 to your computer and use it in GitHub Desktop.
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
| (import '(java.util.concurrent Executors TimeUnit)) | |
| (.scheduleAtFixedRate (Executors/newScheduledThreadPool 1) | |
| (proxy [Runnable] [] | |
| (run [] | |
| (println "This is a strange loop"))) | |
| 30 30 TimeUnit/SECONDS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment