This file contains shared and configurable code templates for various parts of this project.
(defun toxi-table->digraph (wrap table)
(mapcar
(lambda (x) (format "\"%s\" -> \"%s\"[label=\"%s\"];\n" (first x) (nth 2 x) (nth 1 x)))
table))
(defun toxi-print-concat (coll)
(princ (apply #'concat coll)))
(toxi-print-concat (toxi-table->digraph nil (-drop 2 graph-table)))