From: Brian Adkins Date: 2007-11-01T00:05:02+09:00 Subject: Re: Create a method with name, containing illegal characters On Oct 31, 9:34 am, kylichuku wrote: > Hi there! > > I need to create a method with name, that contains '-' character. Is > it possible, and if the answer is "yes", how can I do it? > > Thanks. 1) yes 2) brian@imagine:~/temp$ cat > a.lisp (defun my-method () (format t "my-method called")) (my-method) brian@imagine:~/temp$ clisp a.lisp my-method called