| www.delorie.com/gnu/docs/guile/guile_334.html | search |
![]() Buy GNU books! | |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
In addition to the standard line comments defined by R5RS, Guile has
another comment type for multiline comments, called block
comments. This type of comment begins with the character sequence
#! and ends with the characters !#, which must appear on a
line of their own. These comments are compatible with the block
comments in the Scheme Shell `scsh' (see section 46. The Scheme shell (scsh)). The characters #! were chosen because they are the
magic characters used in shell scripts for indicating that the name of
the program for executing the script follows on the same line.
Thus a Guile script often starts like this.
#! /usr/local/bin/guile -s !# |
More details on Guile scripting can be found in the scripting section (see section 9. Guile Scripting).
| webmaster donations bookstore | delorie software privacy |
| Copyright © 2003 by The Free Software Foundation | Updated Jun 2003 |