How do I use the java.time library in clojure? I can't even get it imported into my repl.
user=> *clojure-version*
{:major 1, :minor 10, :incremental 0, :qualifier nil}
user=> (java.util.Date.)
#object[java.util.Date 0x5c22a205 "Tue Oct 08 22:10:21 PDT 2019"]
user=> (java.time.Instant.)
Syntax error (IllegalArgumentException) compiling new at (REPL:1:1).
No matching ctor found for class java.time.Instant
It's in the java docs, and I have java 13 installed https://docs.oracle.com/en/java/javase/13/docs/api/java.base/java/time/Instant.html
There's https://github.com/dm3/clojure.java-time that claims to use it, that's cool if I were trying to use it in a project I might do that. But I just want to import it and play with a date in the repl. How is it done?