picolisp

picoLisp language: onOff question

This question is really moot, I think I must have hit a bug in my program or something. If you are still looking for PicoLisp and onOff behaviour, look here. is this supposed to happen? : (show NIL) NIL NIL -> NIL : (onOff) -> T : (show NIL) T T -> T : (=T NIL) -> T : (onOff sym ..) -> flg Logical negates the VAL's of all arg...

Picolisp question, segfault when manipulating lists of numbers (from mailing list)

Hello, I'm new to Picolisp. I tried this, and obtained a segfault: : ('(1 2) 6) Segmentation fault But, if i try: : ('(a b c) 6) -> NIL I mostly understand why, but it was a surprise that PicoLisp responded with a segfault instead of an error. Does this means that Picolisp doesn't check if a number is a function but it does when i...