[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] softscheme, srfi-76
From: |
Benedikt Rosenau |
Subject: |
Re: [Chicken-users] softscheme, srfi-76 |
Date: |
Wed, 21 Sep 2005 14:41:01 +0200 |
User-agent: |
Mutt/1.4i |
On Tue, Sep 20, 2005 at 08:24:18AM -0500, Ashley Bone wrote:
> Felix, you rock.
Indeed.
I ran into a problem using softscheme, since it defines a symbol 'st:
which is taken for a keyword. The script following can be used for
typing files.
$ cat typeit.scm
(use srfi-1 softscheme)
(match (command-line-arguments)
((in out) (begin (do-soft (list in) out) (st:type)))
((and arg (in)) (begin (do-soft arg "soft.types") (st:type)))
(l (print "Wrong usage:" l)))
Softscheme dates back to R4RS. It would be nice if its type definitions
would be adapted to R5RS in general and Chicken in particular.
Any takers?
Benedikt