Contents    Page-10    Prev    Next    Page+10    Index   

Examples: Flattening Tree


>(flattenbt '(cat (bat ape
                       bee)
                  (eel dog
                       fox)))

(ape bat bee cat dog eel fox)

>(flattenbt '(= y (+ (* m x) b)))

(y = m * x + b)