Hi I'm trying to write a few lines of code to make a fas file. The problem is the names lisp must have quotation marks around it. How would I insert these so that it can then inserted onto the command line? Thanks Russ (defun C:makefas( / lispname) (setq lispname (getstring " Name of lisp : ")) (setq lispname (strcat lispname ".lsp")) (princ (strcat "(vlisp-compile 'st " lispname ")")) (princ) );defun