Code: Select all
> (integer? 25)
true
Code: Select all
> (integer? (sqrt 25))
nil
is evaluateing the sqrt function, rather than the result of the function.
Am I misunderstanding how newLisp evaluates data?
Code: Select all
> (integer? 25)
true
Code: Select all
> (integer? (sqrt 25))
nil