Go to the first, previous, next, last section, table of contents.


7.1.6 Programs and definitions

<program> ---> <command or definition>*

<command or definition> ---> <command> | <definition>
                     | <syntax definition>
                           | (begin <command or definition>+)

<definition> ---> (define <variable> <expression>)
                | (define (<variable> <def formals>) <body>)
                | (begin <definition>*)

<def formals> ---> <variable>* | <variable>* . <variable>

<syntax definition> ---> (define-syntax <keyword> <transformer spec>)


Go to the first, previous, next, last section, table of contents.