From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Keith Wright Newsgroups: gmane.lisp.guile.user Subject: Re: Ideas for making Guile easier to approach Date: Wed, 09 Feb 2022 18:06:44 -0500 Message-ID: <87tud7skqj.fsf@fcs22.keithdiane.us> References: <0e1b4d4f7b0e097870326da44d4f51be3b6a1b98.camel@telenet.be> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28638"; mail-complaints-to="usenet@ciao.gmane.io" Cc: guile-user@gnu.org To: Maxime Devos Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Thu Feb 10 00:08:01 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nHw49-0007EV-Rz for guile-user@m.gmane-mx.org; Thu, 10 Feb 2022 00:08:01 +0100 Original-Received: from localhost ([::1]:34352 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nHw48-0001bR-6C for guile-user@m.gmane-mx.org; Wed, 09 Feb 2022 18:08:00 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:52834) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nHw3M-0000Ve-A9 for guile-user@gnu.org; Wed, 09 Feb 2022 18:07:12 -0500 Original-Received: from dsl.keithdiane.us ([66.92.74.188]:54966) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nHw3K-0003od-CD for guile-user@gnu.org; Wed, 09 Feb 2022 18:07:12 -0500 Original-Received: from fcs22.keithdiane.us (fcs22.keithdiane.us [192.168.1.121]) by fcs19.keithdiane.us (Postfix) with ESMTP id DFC0A26439A; Wed, 9 Feb 2022 18:06:44 -0500 (EST) In-Reply-To: <0e1b4d4f7b0e097870326da44d4f51be3b6a1b98.camel@telenet.be> (message from Maxime Devos on Wed, 09 Feb 2022 22:05:05 +0100) Received-SPF: pass client-ip=66.92.74.188; envelope-from=kwright@keithdiane.us; helo=dsl.keithdiane.us X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:18057 Archived-At: Maxime Devos writes: > Christine Lemmer-Webber schreef op wo 09-02-2022 om 10:18 [-0500]: >> We had: >>=20 >> =C2=A0=C2=A0=C2=A0 #:use-module (srfi args-fold) >> =C2=A0=C2=A0=C2=A0 #:use-module (srfi streams) >> =C2=A0=C2=A0=C2=A0 #:use-module (srfi tests)) > > The RnRS reserved the (srfi ...) namespace for the SRFI process, I don't know off-hand if that's true, but it's a good idea... > possibly adding our own names here would be against the standard. ...and not a problem. Pick a new name for your new thing. >> =C2=A0=C2=A0=C2=A0 #:use-module (guile-srfi args-fold) >> =C2=A0=C2=A0=C2=A0 #:use-module (guile-srfi streams) >> =C2=A0=C2=A0=C2=A0 #:use-module (guile-srfi tests)) That's just as easy to follo9w, and you know what this meains: >> =C2=A0=C2=A0=C2=A0 #:use-module (chicken-srfi lazy-streams) >> =C2=A0=C2=A0=C2=A0 #:use-module (s48-srfi tests)) and you know where to put any little thing needed to translate s48 tests to guile tests if inconsistencies are found. -- Keith =20