Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Dr. Arne Babenhauserheide
Matt Wette writes: > On 2/26/23 10:03 AM, Dr. Arne Babenhauserheide wrote: >> Matt Wette writes: >> >>> You can name a file containing Scheme code "foo.js" and "guile foo.js" >> guile -L . -e '(foo)' -c '' >> >> won’t find it. But it will find it in foo.scm. >> > > Guile does not use file

Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Matt Wette
On 2/26/23 10:03 AM, Dr. Arne Babenhauserheide wrote: Matt Wette writes: With respect to file extensions, guile does not use file extension: You can name a file containing Scheme code "foo.js" and "guile foo.js" will execute it. The module-system uses file extensions: If you (define-module

Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Dr. Arne Babenhauserheide
Matt Wette writes: > With respect to file extensions, guile does not use file extension: > You can name a file containing Scheme code "foo.js" and "guile foo.js" > will execute it. The module-system uses file extensions: If you (define-module (foo) #:export (main)) (define (main args)

Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Matt Wette
With respect to file extensions, guile does not use file extension: You can name a file containing Scheme code "foo.js" and "guile foo.js" will execute it. The code in the wip-load-lang branch provides file-extension support: 1) Currently emacscript, with "js" extension, elisp, with "el"

Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Maxime Devos
Op 26-02-2023 om 08:45 schreef Philip McGrath: Hi, On Sat, Feb 18, 2023, at 10:58 AM, Maxime Devos wrote: On 18-02-2023 04:50, Philip McGrath wrote: I haven't read the patch or this thread closely, I'll assume you have read it non-closely. but R6RS has an answer to any concerns about

Re: [PATCH] add language/wisp to Guile?

2023-02-26 Thread Marc Nieper-Wißkirchen
Am So., 26. Feb. 2023 um 08:46 Uhr schrieb : > Message: 1 > Date: Sun, 26 Feb 2023 02:45:12 -0500 > From: "Philip McGrath" > To: "Maxime Devos" , Ludovic Courtès > , "Matt Wette" , > guile-devel@gnu.org > Cc: "Christine Lemmer-Webber" > Subject: Re: [PATCH] add language/wisp to