RosettaCodeData/Task/Program-name/Common-Lisp/program-name-1.lisp

7 lines
168 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;;; Play nice with shebangs
(set-dispatch-macro-character #\# #\!
(lambda (stream character n)
(declare (ignore character n))
(read-line stream nil nil t)
nil))