* README: Update, document available SRFIs.
[bpt/guile.git] / srfi / srfi-8.scm
CommitLineData
818b6dda
RB
1;;;; srfi-8.scm --- SRFI-8 procedures for Guile
2
3;;; Copyright (C) 2000 Free Software Foundation, Inc.
4;;;
5;;; This program is free software; you can redistribute it and/or
6;;; modify it under the terms of the GNU General Public License as
7;;; published by the Free Software Foundation; either version 2, or
8;;; (at your option) any later version.
9;;;
10;;; This program is distributed in the hope that it will be useful,
11;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13;;; General Public License for more details.
14;;;
15;;; You should have received a copy of the GNU General Public License
16;;; along with this software; see the file COPYING. If not, write to
17;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18;;; Boston, MA 02111-1307 USA
19
20(define-module (srfi srfi-8)
21 :use-module (ice-9 receive))
22
23(export-syntax receive)
1b2f40b9
MG
24
25(cond-expand-provide (current-module) '(srfi-8))