[파일명: testStringFindInVector.lsp]------------------------------------------------ #!/usr/bin/env clisp ;; Filename: testStringFindInVector.lsp ;; ;; Approximate square roots, cubic roots and n-th roots of a given number. ;; ;; Execute: clisp testStringFindInVector.lsp ;; Or ;; Execute: ./testStringFindInVector.lsp ;; ;; Date: 2013. 9. 12. (defun my-exact-find(arr s) ; (position s arr)) (let ((r ..