Recent posts

#1
newLISP newS / Wisp to new lisp
Last post by fdb - March 27, 2025, 06:36:37 AM
Hi,
last week I got nerd-sniped when I saw an alternative to the 'parens-heavy' syntax of newlisp, wisp: https://www.draketo.de/software/wisp.

I've seen more alternative lisp syntaxes over the years (f.i. rhombus, shrubbery in Racket) but this is the first time that I can see this a viable alternative so I made a small newlisp module (indent.lsp) which you can download from https://github.com/luxint/wisp-newlisp.


As an example this is wisp syntax:

define : factorial n
  if : zero? n
    . 1
    * n : factorial : - n 1

which gets then transpiled into:

(define (factorial n )
  (if (zero? n)
    1
    (* n (factorial (- n 1)))))


Have fun and let me know if you like it!




#2
newLISP newS / Re: How can we get newlisp rol...
Last post by itistoday - March 20, 2025, 09:45:47 AM
I think experiments that people want to put effort into are worth trying. 👍
#3
newLISP newS / How can we get newlisp rolling...
Last post by hapco - March 20, 2025, 08:35:36 AM
Hi guys,

How can we attract attention to newlisp from folks who recognize its worth and have the skills to maintain and improve it? Maybe fork it and re-write it in Nim, Go, or Rust? If we went that direction it might get people from those communities interested. We could name the fork Nimlisp, or something.

What do you think?
#4
newLISP newS / Re: newLISP Github?
Last post by vetelko - March 03, 2025, 01:35:57 AM
https://github.com/newlisp

That's crazy that Github keeps accounts that haven't had a single activity in the last 15 years, and deleting them would cause no harm.
#5
newLISP newS / Re: newLISP Github?
Last post by itistoday - February 28, 2025, 08:57:15 PM
When I asked Lutz this question he got back to me with a link to the same repo @iacore posted: https://github.com/kosh04/newlisp

So I guess maybe that's where people should look to send PRs? But I see nobody seems to be maintaining it, and it seems to be setup more as a mirror.
#6
newLISP newS / Re: newlisp.org website down
Last post by itistoday - February 28, 2025, 12:30:29 PM
It's back up!
#7
newLISP newS / Re: newlisp.org website down
Last post by libz - February 26, 2025, 02:52:01 PM
Humm,

Two years ago, also at the end of February, the website was down as well.
https://newlispfanclub.com/index.php?msg=25208
#8
newLISP newS / newlisp.org website down
Last post by libz - February 26, 2025, 01:57:23 PM
Hi,

I'd like to try newLISP but the website has been down for me all day.
#9
newLISP in the real world / Re: fuzzylisp
Last post by vashushpanov - January 29, 2025, 02:22:43 AM
Thank you very match.
#10
newLISP in the real world / Re: fuzzylisp
Last post by marchildmann - January 27, 2025, 11:04:13 PM
I sent you an email including the book. Maybe it helps.