Re: Scripting for installing a module

2022-07-02 Thread Matt Wette
Another option is some variant of     $ sudo cp xyz/file.scm `guile -c '(display (%global-site-dir))'`/xyz/file.scm On 7/1/22 10:15 AM, James Crake-Merani wrote: guile -c '(display (%global-site-dir))'Hello, I was just wondering what approach people tend to take when writing a script which

Re: Scripting for installing a module

2022-07-02 Thread Zelphir Kaltstahl
On 7/2/22 10:46, James Crake-Merani wrote: On 22/07/02 09:11am, adriano wrote: Il giorno ven, 01/07/2022 alle 18.15 +0100, James Crake-Merani ha scritto: Hello, I was just wondering what approach people tend to take when writing a script which installs a module onto the load-path. I understa

Re: Pattern matching: what does (= f pat) do?

2022-07-02 Thread Abhiseck Paira
> Dear guile users, > The pattern matching manual has a strange description for the (= f pat) > pattern. It reads: > (= field pat) a ``field'' of an object > However, the next example shows how you can apply a function in field > without having anything to do with a field o

Re: Curiosity: Microkernel implemented in Guile ?

2022-07-02 Thread Matias Jose Seco Baccanelli
Hello fellow Guilers! Thank you so much for the wide input! So cool to see many thriving initiatives! Il giorno Thu, 23 Jun 2022 09:34:25 +0200 Maxime Devos ha scritto: > Matias Jose Seco Baccanelli schreef op do 23-06-2022 om 08:11 [+0200]: > > Feels like a nice recipe for User Empowerment ! >

Re: Scripting for installing a module

2022-07-02 Thread James Crake-Merani
On 22/07/02 09:11am, adriano wrote: > Il giorno ven, 01/07/2022 alle 18.15 +0100, James Crake-Merani ha > scritto: > > Hello, > > > > I was just wondering what approach people tend to take when writing a > > script which installs a module onto the load-path. I understand this > > path might be dif

Re: Scripting for installing a module

2022-07-02 Thread adriano
Il giorno ven, 01/07/2022 alle 18.15 +0100, James Crake-Merani ha scritto: > Hello, > > I was just wondering what approach people tend to take when writing a > script which installs a module onto the load-path. I understand this > path might be different on different machines so how do you make su