On Sun, 2020-06-07 at 10:39 +0200, Zelphir Kaltstahl wrote:
> This is what I have been looking up just yesterday as well!
>
> I remember some e-mails here on the Guile user list definitely later
> than 2017. However, they also did not turn up on my search engine search
> yesterday.
>
> I also won
As far as I can tell nothing has happened since 2017. Has the project
died?
;no such option")
(display exception:no-such-option)
and I would like to know how the equivalent with define-syntax... syntax-case
would look.
Thanks,
Dale
fault. I don't think it was ever intended to be generally
useful.
Long term, Guile should probably have syntax-case macros available
without having to resort to use-syntax.
-Dale
--
Dale P. Smith
___
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
Mike Gran writes:
>>
>> Let's say you had a file "a.data" that contained
>>
>> ("This" "is" "a" "test")
>>
>> Note that there is no initial quote.
>>
>> ...
>>
>> One step up could be
>>
>> (call-with-input-file "a.data" (lambda (p) (display (read p
Perfect! I was basically making a
This seems like the simplest thing which guile ought to be able to do
in a snap, but I can't for the life of me work out how to do it.
I have a file called a.data which contains some data as a scheme
expression, such as
'("This" "is" "a" "test")
and I want to use these data in a program, so I wa