GNU Info

Info Node: (guile.info)Guile Scripts

(guile.info)Guile Scripts


Next: Linking Programs With Guile Prev: Running Guile Interactively Up: Whirlwind Tour
Enter node , (file) or (file)node

Guile Scripts
=============

Like AWK, Perl, or any shell, Guile can interpret script files.  A Guile
script is simply a file of Scheme code with some extra information at
the beginning which tells the operating system how to invoke Guile, and
then tells Guile how to handle the Scheme code.

Before we present the details, here is a trivial Guile script:

     #!/usr/local/bin/guile -s
     !#
     (display "Hello, world!")
     (newline)

The Top of a Script File
How to start a Guile script.
Scripting Examples
Simple Guile scripts, explained.

automatically generated by info2www version 1.2.2.9