in reply to Is there a way to call lisp from perl?
sub run_lisp { my ($lisp_code) = @_; my $lisp_result; $lisp_result = `lisp_interpreter $lisp_code`; return($lisp_result); } [download]