Variable expected

2010-04-25 Thread Jon Kleiser
Hi, I just stumbled acros this: : (car ((list 1 2 3) 4)) !? (car ((list 1 2 3) 4)) 3 -- Variable expected Why is a variable expected in this position? /Jon -- UNSUBSCRIBE: mailto:picol...@software-lab.de?subject=unsubscribe

Re: Variable expected

2010-04-25 Thread Alexander Burger
Hi Jon, : (car ((list 1 2 3) 4)) !? (car ((list 1 2 3) 4)) 3 -- Variable expected Why is a variable expected in this position? ((list 1 2 3) 4) is a highly illegal expression :-/ When PicoLisp tries to evaluate it, it finds that the CAR is a list (list 1 2 3) This CAR is evaluated