The 9.4.0 newLISP manual

Started by Lutz, June 09, 2008, 06:05:01 AM

Previous topic - Next topic

xytroxon

#60
========



newLISPdoc.html



Change: "exactly on space"

To: "exactly one space"



========



newlisp_manual.html



dostring

...

 example:



    ; ASCII example

    (set 'str "abcdefg")

    (dostring (c str) (println c " - " (char c)))



    97

    98 - a

    99 - b

    100 - c

    101 - d

    102 - e

    103 - f



Change to:



    97 - a

    98 - b

    99 - c

    100 - d

    101 - e

    102 - f

    103 - g



----------



when

...

Change: "See also the function when"

To: "See also the function unless"



=========
\"Many computers can print only capital letters, so we shall not use lowercase letters.\"

-- Let\'s Talk Lisp (c) 1976

Kazimir Majorinc

#61
(lambda-macro (a b) (set (eval a) b))  → (lambda (x) (* x x))



Noted by Rainer Joswig in comp.lang.lisp.
http://kazimirmajorinc.com/\">WWW site; http://kazimirmajorinc.blogspot.com\">blog.

cormullion

#62
Quote from: "Kazimir Majorinc"(lambda-macro (a b) (set (eval a) b))  → (lambda (x) (* x x))



Noted by Rainer Joswig in comp.lang.lisp.


Kind of them to help proofread the manual... :) Usually they have only insults and condescensions - perhaps they've decided to become better people!

m i c h a e l

#63
Every time newLISP is mentioned on comp.lang.lisp, a hatestorm breaks out, causing every newLISPhobe to come out of the woodwork and vent their spleens. Good thing Kazimir is so flame-retardant!



They do this so often, I'm beginning to believe they like the smell of their own bullshit. They produce so much of it ;-)



m i c h a e l

xytroxon

#64
Quote from: "m i c h a e l"They do this so often, I'm beginning to believe they like the smell of their own bullshit. They produce so much of it ;-)



m i c h a e l


Fools... Don't they know they must fear Haskell as the true heir to the advanced purely functional programming language crown? ;)



Maybe someone could write a post explaining how modernizing the antiquated car cdr cons syntax with capsule rocket launchpad would help "launch" LISP to be "other worldly" and make it "universal" in scope ;)



-- xytroxon
\"Many computers can print only capital letters, so we shall not use lowercase letters.\"

-- Let\'s Talk Lisp (c) 1976

DrDave

#65
Quote from: "xytroxon"
Maybe someone could write a post explaining how modernizing the antiquated...

As I recall, they like to remind those that question the CL dogma that they have a "Standard".  While standards usually have a positive aspect, it seems to me that the standard bearers are so afraid of breaking any existing code that their community cannot (will not?) modernize the standard. Hence, the standard they so proudly defend is probably their greatest impediment to progress
...it is better to first strive for clarity and correctness and to make programs efficient only if really needed.

\"Getting Started with Erlang\"  version 5.6.2

Kazimir Majorinc

#66
About http://www.newlisp.org/downloads/newlisp_manual.html#map">map
[list=1]
  • "Note that only functions with applicative order of evaluation can be mapped. Functions with conditional or delayed evaluation of their arguments (e.g., if or case) cannot be mapped. "
  • [/list]

    It appears that if can be mapped - and that it is even used in the example of map. Or I misunderstood something.
    http://kazimirmajorinc.com/\">WWW site; http://kazimirmajorinc.blogspot.com\">blog.

    Lutz

    #67
    It should probably say: Special forms which use parentheses as syntax cannot be mapped (e.g. case).

    HPW

    #68
    manual 10.0



    Clicking on hyperlink Wr in left frame 'Functions in alphabetical order' jumps to 'write-file' instead of 'write-buffer'.
    Hans-Peter