Re: Access procedures from runtime/runtime.pkg

2021-12-04 Thread Chris Hanson
They are in (mit legacy runtime). On Dec 4, 2021, 6:01 AM -0800, Amirouche , wrote: > In collusion with other people, I am trying to build a portable set of > libraries. > > I started with a JSON library (rework of SRFI-180), the current test suite > pass > with nine Scheme implementation [0]. >

scheme case-lambda does not work

2021-12-04 Thread Amirouche
The following program: #; cat foo.scm (import (scheme base) (scheme write) (scheme case-lambda)) (define foo (case-lambda (() 42) ((test) test))) (write (foo)) (write (foo 1337)) With mit-scheme 12.0.50 does not work on my side. Here is the message I have: ;Unbound

Access procedures from runtime/runtime.pkg

2021-12-04 Thread Amirouche
In collusion with other people, I am trying to build a portable set of libraries. I started with a JSON library (rework of SRFI-180), the current test suite pass with nine Scheme implementation [0]. Question: how can I import procedures that are defined in runtime/runtime.pkg e.g.