newLISP Fan Club
Forum => newLISP in the real world => Topic started by: HPW on April 21, 2016, 01:06:02 AM
Hello,
I noticed that quoting the symbol makes inc non-destruktive
Quote
> (setq Test 1)
1
> (inc 'Test)
2
> Test
1
> (inc Test)
2
> Test
2
Not documented.
Regards