Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - cameyo

#16
Thanks itistoday!
Thanks ralph!
#17
Thanks.

newlisp deserves a modern and functional forum.
#18
Whither newLISP? / Searching on array
February 01, 2023, 07:06:15 AM
How to search a value in array ?

Use array-list and then find, ref, etc ?
#19
So, what can you actually DO with newLISP? / chatGPT
January 21, 2023, 12:24:36 AM
chatGPT is able to write code in newlisp!!!

Some errors, but it is fun.

Try: "write code in newlisp to solve quadratic equation"
#20
Thanks Ralph
#21
I'm looking for old versions of newLISP manual (historic reasons).

Any version is appreciated.

Thank you

cameyo
#22
Anything else we might add? / Auguri
December 25, 2022, 09:51:22 AM
Best wishes to all
(println "Happy " (add 1 (div 2 (div 3 (add 4 5 (mul 6 7 8 9))))))
#23
So, what can you actually DO with newLISP? / newlisp note
November 23, 2022, 08:44:33 AM
Over one thousand of problems solved with newlisp.

https://github.com/cameyo42/newLISP-Note">//https://github.com/cameyo42/newLISP-Note

So much fun with newlisp.

Thanks Lutz
#24
newLISP newS / Lisp book
July 27, 2022, 05:21:11 AM
Lisp Book (Croatian language) by Kazimir Majorinc at:

http://monoskop.org/images/c/cb/Majorinc_Kazimir_Mocan_koliko_je_god_moguce.pdf">//http://monoskop.org/images/c/cb/Majorinc_Kazimir_Mocan_koliko_je_god_moguce.pdf



Traslation in english "As Powerful As Possible" at:

https://github.com/amno1/as-powerful-as-possible">//https://github.com/amno1/as-powerful-as-possible
#25
newLISP in the real world / Re: setq '
July 04, 2022, 06:58:37 AM
Solution of my problem:

http://www.newlispfanclub.alh.net/forum/viewtopic.php?f=16&t=4580">//http://www.newlispfanclub.alh.net/forum/viewtopic.php?f=16&t=4580
#26
newLISP in the real world / Function as list
July 04, 2022, 06:53:35 AM
https://gist.github.com/cameyo42/13fb05eb49769e5f64913b624507c14e">//https://gist.github.com/cameyo42/13fb05eb49769e5f64913b624507c14e

Can't post code on forum :-(
#27
newLISP newS / Re: newLISP v.10.7.0 Stable Release
June 26, 2022, 05:10:49 AM
deleted
#28
newLISP in the real world / Re: string function
June 15, 2022, 10:20:05 AM
Ok. I am old...and often confused.

Thanks HPW and Ralph.
#29
newLISP in the real world / Re: string function
June 14, 2022, 11:06:25 PM
This is normal:
(string a b)
-> "1020"
(string "a""b")
-> "ab"

This is strange, but you just need to know:
(string ""a""b"")
-> "1020"
#30
newLISP in the real world / string function
June 13, 2022, 10:43:11 PM
Why this?
(setq a 10)
(setq b 20)
(string "'"a" '"b"")
-> "'10 '20"