[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-janitors] #1437: csi needs double imports
From: |
Chicken Trac |
Subject: |
Re: [Chicken-janitors] #1437: csi needs double imports |
Date: |
Sat, 28 Apr 2018 09:06:22 -0000 |
#1437: csi needs double imports
---------------------------------+---------------------------
Reporter: mario | Owner:
Type: defect | Status: new
Priority: major | Milestone: 5.0
Component: expander | Version: 5.0
Resolution: | Keywords: double import
Estimated difficulty: |
---------------------------------+---------------------------
Comment (by sjamaan):
I just noticed if you split up into two evals, it works correctly!
{{{
(import srfi-1)
(print (assoc 'a '((a . 1)) eq?))
(print (eval '(import srfi-1)))
(print (eval '(assoc 'a '((a . 1)) eq?)))
}}}
This probably is something going wrong in the evaluator's lookup or in how
{{{begin}}} is handled, not the imports as such.
--
Ticket URL: <https://bugs.call-cc.org/ticket/1437#comment:8>
CHICKEN Scheme <https://www.call-cc.org/>
CHICKEN Scheme is a compiler for the Scheme programming language.
- Re: [Chicken-janitors] #1437: csi needs double imports,
Chicken Trac <=