Fw: [CM] problem with #! in CMUCL
rm@fabula.de
rm@fabula.de
Mon, 25 Nov 2002 17:35:11 +0100
On Mon, Nov 25, 2002 at 09:58:58AM -0600, Rick Taube wrote:
> >Hmm, in terms of LISP/Scheme transparence: is '#!' really a good choice?
> >After all '#!' is Guiles (and SCSH's) start of multiline comment character
>
> i sure read that in Guile 1.6.0 multiple line comment had been swiched to #| |#
> is this not correct?
Well, it kind of needs those for things like:
|
| #!/usr/local/bin/guile
| -e ...
| !#
|
| (my-guile-code 'here)
|
|
I got the impression '#|' was an _additional_ syntax.
> otherwise ill purge #! from the boos since you can pass string names
> to the events function. geez if guile still uses #! then im up for
> suggestions...
#! this is a multiline comment
!#
(display "Ok\n")
(define blub #! Do we really want
such comments?
!#
"honk")
(display (string-append blub "\n"))
still works. No comments ;-)
Ralf Mattes