Closed jianlingzhong closed 2 weeks ago
The changes look great, @jianlingzhong! Please format all of the C++ with clang-format from the build/llvm-install
dir before we merge.
Things should work now:
❯ build/jank repl
Bottom of clojure.core
> (def d (delay (println "test")))
#'clojure.core/d
> d
delay@0x1173924d0
> (deref d)
test
nil
> (deref d)
nil
> (def d (delay (println "test")))
#'clojure.core/d
> (force d)
test
nil
> (force d)
nil
> (force 42)
42
>
Thanks @jeaye !
The changes look great, @jianlingzhong! Please format all of the C++ with clang-format from the
build/llvm-install
dir before we merge.
Done!
Nice job!
Still a draft. Needs more work: