tphyahoo has asked for the wisdom of the Perl Monks concerning the following question:
But everything happens in the SLIME emacs top level.
Maybe this is wishful thinking, but I would like to be able to be able to get lisp playing with my bash shell. I would like to get lisp playing... with perl.
Is there some way for perl to talk to SLIME? To any kind of emacs? To any kind of lisp? Or, for the previous three questions, s/perl/bash/... which, I guess amounts to the same thing, given backticks.....
Can someone make the following code work?
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 { }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Is there a way to call lisp from perl?
by salva (Canon) on Mar 20, 2006 at 11:27 UTC | |
|
Re: Is there a way to call lisp from perl?
by diotalevi (Canon) on Mar 20, 2006 at 14:17 UTC | |
|
Re: Is there a way to call lisp from perl?
by Fletch (Bishop) on Mar 20, 2006 at 14:58 UTC | |
|
Re: Is there a way to call lisp from perl?
by samizdat (Vicar) on Mar 20, 2006 at 20:04 UTC | |
|
Re: Is there a way to call lisp from perl?
by Anonymous Monk on Mar 20, 2006 at 15:20 UTC | |
|
Re: Is there a way to call lisp from perl?
by aufflick (Deacon) on Mar 21, 2006 at 13:18 UTC | |
by salva (Canon) on Mar 21, 2006 at 14:29 UTC | |
by diotalevi (Canon) on Mar 21, 2006 at 14:46 UTC | |
by audreyt (Hermit) on Mar 23, 2006 at 10:43 UTC | |
by gaal (Parson) on Mar 21, 2006 at 13:41 UTC |