Generating small graphs
Build infra for generating and displaying graphs.
(defun triangle (n)
(if (equal n 0) 0
(+ n (triangle (- n 1)))))
Related
- Possibly link this to Visual code walk through so that we generate graphs based on code flow.