in reply to Is there a way to call lisp from perl?

You could fake it with something as simple as this, if you're not doing anything too complex on the LISP side...
sub run_lisp { my ($lisp_code) = @_; my $lisp_result; $lisp_result = `lisp_interpreter $lisp_code`; return($lisp_result); }