|
|
|
|
|
by ezy
5051 days ago
|
|
The live evaluation is nice, but seems a little limited. If I have: (defn my-add [a b]
(+ a b))
(my-add 3 45)
(my-add 1 2)
Only the "1 2" version is followed into "my-add". Is there anyway to force it to look at "3 45" other than commenting out "1 2"?I greatly prefer the idea of showing the value propagation explicitly as you click on things. For example, using lines and arrows to show that this came from there and that came from here. |
|