Re: [9fans] plan 9 and lisp

2023-01-19 Thread Edward Partenie
I love it for the same reasons. Small set of small but powerful and far-reaching abstractions, which all compose well together. That’s good design! On Thu, 19 Jan 2023 at 9:09 AM fig wrote: > i’m wondering what 9fans think about lisp, specifically scheme. they’re > both the powerful synthesis

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Lassi Kortela
i’m wondering what 9fans think about lisp, specifically scheme. Cat-v.org has given a nod to Scheme. Chibi-Scheme has run on Plan 9. A useful Scheme interpreter can be written in about 10k lines of clear C code. they’re both the powerful synthesis of simple ideas. i don’t see any mention

Re: [9fans] Script to apply Edit commands in acme

2023-01-19 Thread revrari
Great tips. Thank you.  -- 9fans: 9fans Permalink: https://9fans.topicbox.com/groups/9fans/Taf408751bc6fb344-M6ae700b031c62aa50ebf7c05 Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

Re: [9fans] plan 9 and lisp

2023-01-19 Thread mkf9
Lassi Kortela wrote: Chibi-Scheme has run on Plan 9. and also S9, which Bakul Shah ported to Plan 9, https://github.com/bakul/s9fes. -- 9fans: 9fans Permalink: https://9fans.topicbox.com/groups/9fans/T7b0afbefb53189b6-M8e6f301616f2c99598d95055 Delivery

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Csepp
o...@eigenstate.org writes: > Quoth Lassi Kortela : >> > i’m wondering what 9fans think about lisp, specifically scheme. >> >> Chibi-Scheme has run on Plan 9. >> > > And more recently, Janet: > > https://git.sr.ht/~pixelherodev/janet > In that vein, you can also use one of the Lua

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Jacob Moody
On 1/19/23 11:26, Csepp wrote: > > o...@eigenstate.org writes: > >> Quoth Lassi Kortela : i’m wondering what 9fans think about lisp, specifically scheme. >>> >>> Chibi-Scheme has run on Plan 9. >>> >> >> And more recently, Janet: >> >> https://git.sr.ht/~pixelherodev/janet >> > > In that

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Skip Tavakkolian
Regarding Ivy, rsc has some fantastic example code in the form of solutions to the Advent of Code 2021 puzzles: https://www.youtube.com/@rscgolang/videos On Thu, Jan 19, 2023 at 7:48 AM Bakul Shah wrote: > > On Jan 19, 2023, at 7:57 AM, mkf9 wrote: > > > > Lassi Kortela wrote: > >> Chibi-Scheme

Re: [9fans] plan 9 and lisp

2023-01-19 Thread ori
Quoth Lassi Kortela : > > i’m wondering what 9fans think about lisp, specifically scheme. > > Chibi-Scheme has run on Plan 9. > And more recently, Janet: https://git.sr.ht/~pixelherodev/janet -- 9fans: 9fans Permalink:

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Dan Cross
On Thu, Jan 19, 2023 at 10:48 AM Bakul Shah wrote: >[snip] > Nils M Holm, the author of s9fes, did the original > port with some help from me. He didn't want to > maintain plan9 related changes which is why I am > maintaining it. Nils also has a book on it but > AFAIK it doesn't cover anything

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Bakul Shah
On Jan 19, 2023, at 7:57 AM, mkf9 wrote: > > Lassi Kortela wrote: >> Chibi-Scheme has run on Plan 9. > and also S9, which Bakul Shah ported to Plan 9, > https://github.com/bakul/s9fes. Nils M Holm, the author of s9fes, did the original port with some help from me. He didn't want to maintain

Re: [9fans] plan 9 and lisp

2023-01-19 Thread Bakul Shah
> On Jan 19, 2023, at 8:01 AM, Dan Cross wrote: > > On Thu, Jan 19, 2023 at 10:48 AM Bakul Shah wrote: >> [snip] >> Nils M Holm, the author of s9fes, did the original >> port with some help from me. He didn't want to >> maintain plan9 related changes which is why I am >> maintaining it. Nils

Re: [9fans] Script to apply Edit commands in acme

2023-01-19 Thread Ben Hancock
(Re-posting this message as earlier send appeared to fail; apologies for any duplication.) revr...@mweb.co.za writes: > In sam I can create a script file consisting of a list of edit > commands to apply to the document. [...] I would like to know if such > a script would require the regular

Re: [9fans] Script to apply Edit commands in acme

2023-01-19 Thread igor
Quoth Ben Hancock : […] > By the way, […] cleaning whitespace at the end of a newline > (Edit ,x/ +$/d), acme does this by default on Put. […] Minor correction: There exist ACME patches accomplishing the above. Howbeit, ACME does not strip trailing whitespace on Put by default.