Re: Ersatz (sym? -.1) differs from pil32

2017-02-14 Thread Alexander Burger
Hi Jon, > In Ersatz (17.1.25 JVM) I get this: > > : (mapcar sym? '(+.1 -.1)) > -> (T NIL) > > In 32-bit PicoLisp (16.12.8 C) I get this: > > : (mapcar sym? '(+.1 -.1)) > -> (T T) > > I have not tested this in 64-bit PicoLisp. Sorry. ;-) It is the same on pil64. Probably Ersatz is not

Re: Ersatz (sym? -.1) differs from pil32

2017-02-14 Thread Mike Pechkin
# pil + : (== 64 64) -> T : (version) 17.1.7 -> (17 1 7) : (mapcar sym? '(+.1 -.1)) -> (T T) : On Tue, Feb 14, 2017 at 3:51 PM, Jon Kleiser wrote: > Hi, > > There seems to be a tiny difference between Ersatz and ordinary PicoLisp > in the “sym?” function. > > In Ersatz

Ersatz (sym? -.1) differs from pil32

2017-02-14 Thread Jon Kleiser
Hi, There seems to be a tiny difference between Ersatz and ordinary PicoLisp in the “sym?” function. In Ersatz (17.1.25 JVM) I get this: : (mapcar sym? '(+.1 -.1)) -> (T NIL) In 32-bit PicoLisp (16.12.8 C) I get this: : (mapcar sym? '(+.1 -.1)) -> (T T) I have not tested this in 64-bit