JanetDocs
Playground
I'm feeling lucky
GitHub sign in
Run
Format
(trace +) #
((trace +) 5 3) # trace (+ 5 3) # 8 (defn knorkulate [a b] ((trace +) a ((trace *) b b ))) #
(knorkulate 2 34) # trace (* 34 34) # trace (+ 2 1156) # 1158