Questions tagged [clojure-repl]

17 questions
0
votes
1 answer

Under the hood of Clojure repl execution

I understand Clojure code is compiled into classes and executed by JVM. For a Java project, I'm able to see a Jar gets created with .class files in it. But how exactly it works in case of a REPL?
Kannan Ramamoorthy
  • 3,980
  • 9
  • 45
  • 63
0
votes
2 answers

Clojure eval with Math functions

I'm having problems eval-ing a LazySeq returned by Deriva: (use 'clojure.core.matrix) (use 'com.lambder.deriva.core) (def f1 '(cos (* x y))) (def f2 '(sin (* x y))) (def f [f1 f2]) (def u ['x 'y]) (def x 4) (def y 3) (defn jacobian [f u] (map…
1
2