newLISP Fan Club

Forum => newLISP in the real world => Topic started by: dukester on August 06, 2016, 05:39:10 PM

Title: Testing a symbol against a string ***SOLVED***
Post by: dukester on August 06, 2016, 05:39:10 PM
I've lost a lot of the little LISP-ishness that I managed to acquire over the years. Use it or loose it ....



Anyway, I have a variable/symbol --  let's say:


(set 'name  "some_name")

Down the road, I want to test te symbol name to see if it is equal to - say "dukester".  If it is, I want to execute a function - say  "emailPerson".



I thought that the following would work:


(if (= name "dukester") (emailPerson))

But it's not working!  Maybe there's a more LISP-ish of accomplishing this? TIA ...
Title: Re: Testing a symbol against a string ***SOLVED***
Post by: TedWalther on August 06, 2016, 10:05:55 PM
That code looks correct.  What is the error you are experiencing?



$ newlisp
newLISP v.10.6.2 64-bit on Linux IPv4/6 UTF-8 libffi, options: newlisp -h

> (set 'name "dukester")
"dukester"
> (if (= name "dukester") (println "hello"))
hello
"hello"
>
Title: Re: Testing a symbol against a string ***SOLVED***
Post by: dukester on August 06, 2016, 10:15:32 PM
Thanks for replying! I solved the issue!!  So I'm moving on to the next step in my little project!! :)