#!/usr/local/bin/sbcl --script (defmacro -> (form . forms) (if (null forms) form `(-> ,(nsubst form 'it (car forms)) ,@(cdr forms)))) (defun join-string (lst sep) (-> (let ((acc (list (car lst)))) (dolist (str (cdr lst) (nreverse acc)) (push sep acc) (push str acc))) (apply #'concatenate 'string it))) (let ((x (list "a" "b" "c" "d"))) (print (join-string x " ")))