Email or username:

Password:

Forgot your password?
Andrew Tropin

SRFIs are modules, which are portable across different scheme implementations, also there is a process for proposing them. BTW, guile contains only subset of it.

ice-9 are basically guile modules, which could be (guile ...), but they are (ice-9 ...).

srfi.schemers.org/srfi-process

lists.gnu.org/archive/html/gui

#guile #scheme #lisp #srfi #guix

3 comments
Colin

@abcdw The Guile standard lib should be called `guile`.

Andrew Tropin

@fosskers Many things in our world could be done differently :)

blake shaw 🇵🇸

@abcdw @fosskers "guile" actually exports from a module (guile); if you enter a module defined with R7RS define-library, for example, (guile) wont be loaded by default, allowing you to load standard r7rs modules (scheme base) etc... the define-library macro adds the #:pure keyword in a define-module form by default.

Go Up