RAW Save Code. (defn dRev [lst] (if (= lst ()) nil (if (list? (first lst)) (dRev (first lst)) (concat (dRev (rest lst)) (list (first ...
確定! 回上一頁