User Manual and Reference v.10.2.8 rev-20.

Q&A's, tips, howto's
Locked
johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

User Manual and Reference v.10.2.8 rev-20.

Post by johu »

Hello,

In User Manual and Reference v.10.2.8 rev-20.


Examples of term :
(set 'ACTX:var 123)
(set 'sm 'ACTX:var)
(string sm) → "ACTX:var"
(term 'sm) → "var"
But, actually :

Code: Select all

> (set 'ACTX:var 123)
123
> (set 'sm 'ACTX:var)
ACTX:var
> (string sm) 
"ACTX:var"
> (term 'sm)
"sm"
> (term sm)
"var"
> (term 'ACTX:var)
"var"
> 
I use newLISP v10.2.16.

Is it true ?

P.S.
; the code to be evaluated is given in a qoted expression
; the code to be evaluated is given in a quoted expression

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: User Manual and Reference v.10.2.8 rev-20.

Post by Lutz »

Thanks, the last correction was not necessary. But here with corrected "quoted" version 21:

http://www.newlisp.org/downloads/newlisp_manual.html

johu
Posts: 143
Joined: Mon Feb 08, 2010 8:47 am

Re: User Manual and Reference v.10.2.8 rev-20.

Post by johu »

Thanks,

And I also have corrected mistakes of Japanese translation part.

http://cid-23a9a25e1aec3626.office.live ... -10208.zip

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Re: User Manual and Reference v.10.2.8 rev-20.

Post by Lutz »


Locked