chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] SRFI-42 and Importing in Chicken 4


From: Jack Trades
Subject: Re: [Chicken-users] SRFI-42 and Importing in Chicken 4
Date: Mon, 15 Dec 2008 19:16:11 -0600

I think I've got it.  So this is the correct way of importing?

(require-library srfi-1)

(module test (t d)
  (import scheme)
  (import (prefix srfi-1 lists.))

  (define (t aList) (lists.take aList 3))
  (define (d aList) (lists.drop aList 3)))

However I still can't seem to install srfi-42.  It looks like chicken-setup is trying to get srfi-42 from the Chicken 3 repo?  Admittedly I have no clue what's going on here, or for that matter how to use chicken-setup (still a chicken newb).  Does srfi-42 still require the syntax-case extension?  If so that also gave me errors through chicken-setup.

Thanks
Jack Trades

reply via email to

[Prev in Thread] Current Thread [Next in Thread]