Created
June 3, 2018 15:55
-
-
Save jmercouris/fa0a99545964dca67c16750481b680f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; file.lisp ;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
#!/usr/bin/cl -sp lisp-stripper -E main | |
(defun main (argv) | |
(if argv | |
(map () 'print-loc-count argv) | |
(print-loc-count *standard-input*))) | |
;;;;;;;;;;;;;; | |
;; Terminal ;; | |
;;;;;;;;;;;;;; | |
> ./file.lisp | |
Failed to execute process './file.lisp'. Reason: | |
The file './file.lisp' specified the interpreter '/usr/bin/cl -sp lisp-stripper -E main', which is not an executable c | |
ommand. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment