Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Aleix Conchillo FlaquƩ
On Wed, Jul 8, 2020 at 11:22 AM Zelphir Kaltstahl < zelphirkaltst...@gmail.com> wrote: > To what others already have written I will add: > > From time to time one can copy ideas from Racket or look at what exists > in Racket for solving a problem or seeing what the approach is. > > Catonano identi

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Alex Sassmannshausen
On Fri, 2020-07-10 at 00:39 -0700, Aleix Conchillo FlaquƩ wrote: > On Wed, Jul 8, 2020 at 11:22 AM Zelphir Kaltstahl < > zelphirkaltst...@gmail.com> wrote: > > > To what others already have written I will add: > > > > From time to time one can copy ideas from Racket or look at what > > exists > >

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Catonano
Il giorno mer 8 lug 2020 alle ore 20:22 Zelphir Kaltstahl < zelphirkaltst...@gmail.com> ha scritto: > Hi Simen! > > On 7/8/20 6:00 PM, guile-user-requ...@gnu.org wrote: > > Hi, I'm new to scheme/lisp, so I'm trying to find out how to do > > things the "lisp > > way". On the other hand, I like thin

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Chris Vine
On Fri, 10 Jul 2020 10:49:37 +0200 Catonano wrote: > Il giorno mer 8 lug 2020 alle ore 20:22 Zelphir Kaltstahl < > zelphirkaltst...@gmail.com> ha scritto: > > > Hi Simen! > > > > On 7/8/20 6:00 PM, guile-user-requ...@gnu.org wrote: > > > Hi, I'm new to scheme/lisp, so I'm trying to find out how t

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Catonano
Il giorno ven 10 lug 2020 alle ore 12:21 Chris Vine ha scritto: > On Fri, 10 Jul 2020 10:49:37 +0200 > Catonano wrote: > > Il giorno mer 8 lug 2020 alle ore 20:22 Zelphir Kaltstahl < > > zelphirkaltst...@gmail.com> ha scritto: > > > > > Hi Simen! > > > > > > On 7/8/20 6:00 PM, guile-user-requ...

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Christopher Lam
With respect to looking for guile examples, I've seen examples whereby LISPers would run some code, dynamically changing the code while running in production, and immediately the new code would be replaced in-memory. Not sure if this is possible in scheme. Any live pointers would be appreciated :)

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Chris Vine
On Fri, 10 Jul 2020 12:15:55 + Christopher Lam top posted: > With respect to looking for guile examples, I've seen examples whereby > LISPers would run some code, dynamically changing the code while running in > production, and immediately the new code would be replaced in-memory. Not > sure i

NYACC: getting source location info?

2020-07-10 Thread tomas
Hi, I'm having some fun with NYACC (thanks, Matt!). To help debugging things and for errors and warnings, it'd be nice to "know" where the current LHS non-terminal starts in the source. Its endpoint is (is it?) (port-line (current-input-port) [and, of course, (port-column ...)] -- at least some

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Zelphir Kaltstahl
Hi all! On 7/10/20 1:20 PM, Catonano wrote: > Il giorno ven 10 lug 2020 alle ore 12:21 Chris Vine > ha scritto: > >> On Fri, 10 Jul 2020 10:49:37 +0200 >> Catonano wrote: >>> Il giorno mer 8 lug 2020 alle ore 20:22 Zelphir Kaltstahl < >>> zelphirkaltst...@gmail.com> ha scritto: >>> Hi Simen

Re: "Missing" libraries/concepts found in other languages/ecosystems?

2020-07-10 Thread Zelphir Kaltstahl
The comments about exception handling also reminded me of the following blog post: https://blog.sulami.xyz/posts/common-lisp-restarts/ Pretty cool concept as well. If there anything like it in Guile or is something like it possible (probably, right?)? On 7/11/20 2:19 AM, Zelphir Kaltstahl wrot

Re: NYACC: getting source location info?

2020-07-10 Thread Matt Wette
On 7/10/20 1:37 PM, to...@tuxteam.de wrote: Hi, I'm having some fun with NYACC (thanks, Matt!). To help debugging things and for errors and warnings, it'd be nice to "know" where the current LHS non-terminal starts in the source. Its endpoint is (is it?) (port-line (current-input-port) [and