use strict; use warnings; #perl hello world print 'perl hello world'; #lisp hello world; my $lisp_hello_world = '\'(lisp hello world)'; run_lisp($lisp_hello_world); # should print LISP HELLO WORLD # the same as SLIME #can someone make this work? sub run_lisp { }