Recent posts

#81
newLISP newS / Re: newLISP Github?
Last post by itistoday - August 03, 2023, 09:36:23 AM
Quote from: iacore on July 31, 2023, 01:21:52 AMI have fixed some bugs of newLISP here: https://git.envs.net/iacore/newerlisp
I also added `(write-expr x)`. May you find this useful.

Have you considered putting out some release notes? Feel free to take inspiration from how Lutz does it or create your own method (e.g. a simple `HISTORY.md` file is often useful).
#82
newLISP newS / Re: newLISP Github?
Last post by iacore - July 31, 2023, 01:21:52 AM
I have fixed some bugs of newLISP here: https://git.envs.net/iacore/newlisp
I also added `(write-expr x)`. May you find this useful.
#83
newLISP newS / Re: Who has the raw data for g...
Last post by itistoday - July 19, 2023, 10:14:13 AM
I know there's a `newlispdoc` utility that creates documentation based on code comments. I'm not sure if that's used to build the full manual though.
#84
newLISP newS / Re: newLISP Github?
Last post by itistoday - July 19, 2023, 10:13:02 AM
Yeah we need someone to act as an active maintainer who can continue the newLISP spirit / way of doing things.
#85
newLISP newS / Who has the raw data for gener...
Last post by iacore - July 18, 2023, 11:25:02 PM
Editng the HTML file manually doesn't seem to work well for development. Does anyone have the raw data extracted from the HTML manual?
#86
newLISP newS / Re: int64 addition underflow/o...
Last post by iacore - July 18, 2023, 11:20:42 PM
This seems to be how newLISP works
#87
newLISP newS / int64 addition underflow/overf...
Last post by iacore - July 18, 2023, 08:29:55 PM
On 64-bit systems, try the following in REPL.

(+ -9223372036854775808 -1)

(+ 9223372036854775807 1)

Luckly, this is caught with UBSan.

You can see the details of this bug in the README of https://codeberg.org/iacore/newerlisp


P.S. does anyone know an existing fork of newLISP?
#88
newLISP newS / Re: newLISP Github?
Last post by iacore - July 18, 2023, 08:28:22 PM
There seems to be a repo at https://github.com/kosh04/newlisp
#89
newLISP in the real world / Re: Executing commands inside ...
Last post by nixfreak - July 04, 2023, 09:29:41 AM
Thank you very much
#90
newLISP in the real world / Re: Executing commands inside ...
Last post by itistoday - July 04, 2023, 09:27:45 AM
Check out the newLISP manual, and look at the commands under the section Processes and the Cilk API.

Relevant functions: !, exec, process

Edit: also - welcome to the forums!