[racket] Accessing an SRFI

From: Neil Van Dyke (neil at neilvandyke.org)
Date: Tue Aug 28 19:34:48 EDT 2012

Michael Rice wrote at 08/28/2012 06:41 PM:
> I haven't used an SRFI for years. What's the extra racket code for 
> accessing one and where is it placed in a code file?

The ``quick start'' answer is to have the first two lines of your file 
be something like the following, for whichever SRFIs you want:

#lang racket
(require srfi/1 srfi/19)

The longer answer is to search the Racket documentation for "srfi", 
which gets you to this:
http://doc.racket-lang.org/srfi/index.html

Neil V.


Posted on the users mailing list.