Re: Good books to study perl interpreter

2015-03-31 Thread Sam
On 03/30/2015 11:42 AM, rakesh sharma wrote: Hi all Please suggest nice books to know perl interpreter. In depth books is that i am looking for. Thanks Rakesh Perl guts can be nice: http://cpansearch.perl.org/src/RURBAN/illguts-0.49/index.html http://perldoc.perl.org/perlguts.html --Sam

Re: Good books to study perl interpreter

2015-03-30 Thread Brock Wilcox
t; search 'perl internal', will give you most of the result. > > *Extending and Embedding Perl* is the book you are looking for. > > On Mon, Mar 30, 2015 at 9:42 AM, rakesh sharma > wrote: > >> Hi all >> >> Please suggest nice books to know perl interpreter. In depth books is >> that i am looking for. >> >> Thanks >> Rakesh > > >

Re: Good books to study perl interpreter

2015-03-30 Thread Hao Wu
Hi, rakesh, search 'perl internal', will give you most of the result. *Extending and Embedding Perl* is the book you are looking for. On Mon, Mar 30, 2015 at 9:42 AM, rakesh sharma wrote: > Hi all > > Please suggest nice books to know perl interpreter. In depth books is

Re: Good books to study perl interpreter

2015-03-30 Thread Jim Gibson
uggest nice books to know perl interpreter. In depth books is that i > am looking for. > > Thanks > Rakesh -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Good books to study perl interpreter

2015-03-30 Thread Shawn H Corey
On Mon, 30 Mar 2015 22:12:51 +0530 rakesh sharma wrote: > Hi all > > Please suggest nice books to know perl interpreter. In depth books is > that i am looking for. > > Thanks > Rakesh FYI: some useful Perl links. • Official site <http://www.perl.org/> • Beginners&#

Re: Good books to study perl interpreter

2015-03-30 Thread Shlomi Fish
Hi Rakesh, On Mon, 30 Mar 2015 22:12:51 +0530 rakesh sharma wrote: > Hi all > > Please suggest nice books to know perl interpreter. In depth books is that i > am looking for. > are you interested in learning how to write code in the Perl 5 programming language (using CPAN mod

Good books to study perl interpreter

2015-03-30 Thread rakesh sharma
Hi all Please suggest nice books to know perl interpreter. In depth books is that i am looking for. Thanks Rakesh

Re: Embed perl interpreter and call C function from perl?

2014-08-20 Thread Charles DeRykus
ever, you may need to learn something about Perl internals. > > > I know some basics about XS and I've written some small modules to get > access to C functions that aren't available in plain Perl. > > I've also successfully written my own small example program tha

Re: Embed perl interpreter and call C function from perl?

2014-08-20 Thread Manuel Reimer
and I've written some small modules to get access to C functions that aren't available in plain Perl. I've also successfully written my own small example program that calls a perl script in an embedded interpreter. What I'm missing is the glue between both worlds. Is it poss

Re: Embed perl interpreter and call C function from perl?

2014-08-19 Thread Jim Gibson
o perl. > > What I want to do is to create a function in C code and somehow export it to > my embedded perl interpreter. Then I want to be able to call this C function > from perl code. > > Can someone point me to a good example on how to do this? > > Thank you v

Embed perl interpreter and call C function from perl?

2014-08-19 Thread Manuel Reimer
embedded perl interpreter. Then I want to be able to call this C function from perl code. Can someone point me to a good example on how to do this? Thank you very much in advance. Greetings, Manuel -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail

perl interpreter output meaning?

2012-09-22 Thread Anne Wainwright
Hi, this is the output. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 1. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 4. Use of uninitialized value $9 in concatenation (.) or string at pg_

Re: perl interpreter output meaning?

2012-09-22 Thread Anne Wainwright
Hi, Thank you Lesleyb, Shlomi, Rob. I should have connected the <> in the output with the <> that I used to get the stuff into the script in the first place but it made no connection. So perl gets better all the time! And that knowledge enabled me to track down the error in the regex so we are

Re: perl interpreter output meaning?

2012-09-22 Thread Jamie Paul Griffin
[ 'lesleyb' wrote on Sat 22.Sep'12 at 9:22:09 +0100 ] > On Sat, Sep 22, 2012 at 09:45:08AM +0200, Anne Wainwright wrote: > > Hi, > > > > this is the output. > > > > Use of uninitialized value $9 in concatenation (.) or string at > > pg_delim2htm_01.pl line 89, <> line 1. > > Use of uninitialize

Re: perl interpreter output meaning?

2012-09-22 Thread Rob Dixon
On 22/09/2012 08:45, Anne Wainwright wrote: Hi, this is the output. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 1. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 4. Use of uninitialize

Re: perl interpreter output meaning?

2012-09-22 Thread Shlomi Fish
Hi Anne, On Sat, 22 Sep 2012 09:45:08 +0200 Anne Wainwright wrote: > Hi, > > this is the output. > > Use of uninitialized value $9 in concatenation (.) or string at > pg_delim2htm_01.pl line 89, <> line 1. > Use of uninitialized value $9 in concatenation (.) or string at > pg_delim2htm_01.pl l

Re: perl interpreter output meaning?

2012-09-22 Thread 'lesleyb'
On Sat, Sep 22, 2012 at 09:45:08AM +0200, Anne Wainwright wrote: > Hi, > > this is the output. > > Use of uninitialized value $9 in concatenation (.) or string at > pg_delim2htm_01.pl line 89, <> line 1. > Use of uninitialized value $9 in concatenation (.) or string at > pg_delim2htm_01.pl line 8

perl interpreter output meaning?

2012-09-22 Thread Anne Wainwright
Hi, this is the output. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 1. Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl line 89, <> line 4. Use of uninitialized value $9 in concatenation (.) or string at pg_

Re: cache and the interpreter

2011-05-06 Thread Uri Guttman
> "MM" == Mike McClain writes: >> INIT { MM> This is the solution I needed. MM> Absolutely a big help. MM> Not only did you supply an explanation but a solution. MM> Best answer possible. not to rain on your parade but from your point of view INIT and BEGIN are the same thing. th

Re: cache and the interpreter

2011-05-06 Thread Mike McClain
On Fri, May 06, 2011 at 08:16:14AM +0100, Rob Dixon wrote: > On 06/05/2011 01:21, Mike McClain wrote: > > > > Here's a simple example that illustrates the problem I've run into: > As Uri says, initialising variables at the point of declaration is done > at run time. This is from 'Programming Perl'

Re: cache and the interpreter

2011-05-06 Thread Dr.Ruud
On 2011-05-06 02:21, Mike McClain wrote: $fibs[$#fibs+1] = 2; push @fibs, 2; -- Ruud -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: cache and the interpreter

2011-05-06 Thread Rob Dixon
) runs it acts as if it can't see $x, $y or @fibs. > The second time it does yet the interpreter had to have seen $x, $y > and @fibs in order to find the definition of show(). > > I've grown accustomed to writing 'C' style code in Perl with main > before th

Re: cache and the interpreter

2011-05-05 Thread Uri Guttman
s=0 1 1 2scalar @fibs = 4 MM> The first time show() runs it acts as if it can't see $x, $y or @fibs. MM> The second time it does yet the interpreter had to have seen $x, $y MM> and @fibs in order to find the definition of show(). MM> I've grown accustomed to

cache and the interpreter

2011-05-05 Thread Mike McClain
2; } show(); ' x= y= $#fibs=-1 fibs= scalar @fibs = 0 x=1 y=2 $#fibs=3fibs=0 1 1 2scalar @fibs = 4 The first time show() runs it acts as if it can't see $x, $y or @fibs. The second time it does yet the interpreter had to have seen $x, $y and @fibs

Re: different perl interpreter locations

2009-02-14 Thread Keith Bawden
, Keith Sent from my iPhone On 2009/02/15, at 8:16, Kevin wrote: Hi All, I have a script that may be executed on multiple hosts. A troubling issue is that the perl interpreter on each host is installed at different location such as /opt/perl/5.8.0/bin/perl, /opt/perl/5.8.5/bin/perl, or / bin

different perl interpreter locations

2009-02-14 Thread Kevin
Hi All, I have a script that may be executed on multiple hosts. A troubling issue is that the perl interpreter on each host is installed at different location such as /opt/perl/5.8.0/bin/perl, /opt/perl/5.8.5/bin/perl, or / bin/perl. My question is: how can I make my script working on all of

Re: using perl interpreter interactively like python?

2003-11-20 Thread drieux
On Thursday, Nov 20, 2003, at 11:25 US/Pacific, Jeff Kowalczyk wrote: [..] I'd like to open perl and execute a few commands interactively in the console. I learn a lot in python this way, and I need to understand some perl code. Did this kind of thing ever get added to perl? [..] first off compli

Re: using perl interpreter interactively like python?

2003-11-20 Thread Dan Anderson
On Thu, 2003-11-20 at 14:25, Jeff Kowalczyk wrote: > I'd like to open perl and execute a few commands interactively in the > console. I learn a lot in python this way, and I need to understand some > perl code. Did this kind of thing ever get added to perl? I assume you're talking about how you ca

Re: using perl interpreter interactively like python?

2003-11-20 Thread Jenda Krynicky
From: Jeff Kowalczyk <[EMAIL PROTECTED]> > I'd like to open perl and execute a few commands interactively in the > console. I learn a lot in python this way, and I need to understand > some perl code. Did this kind of thing ever get added to perl? Apart from the "debug session" explained in the pr

Re: using perl interpreter interactively like python?

2003-11-20 Thread david
Jeff Kowalczyk wrote: > I'd like to open perl and execute a few commands interactively in the > console. I learn a lot in python this way, and I need to understand some > perl code. Did this kind of thing ever get added to perl? yes but probably not in a sense that you expect it. the perl debugge

using perl interpreter interactively like python?

2003-11-20 Thread Jeff Kowalczyk
I'd like to open perl and execute a few commands interactively in the console. I learn a lot in python this way, and I need to understand some perl code. Did this kind of thing ever get added to perl? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

RE: Full path to the perl interpreter

2003-08-26 Thread Marcos . Rebelo
the script are being called like /usr/local/bin/perl5.8.0/bin/perl -w /proj/xpto.pl I need the "/usr/local/bin/perl5.8.0/bin/perl" The usual path is for a older version in this case. The perl path is in a database that I don't see and I don't want to pass the perl path to the script. That will

Re: Packaging perl interpreter & appl into DLL?

2003-07-10 Thread Jenda Krynicky
From: "Fuchs, Christopher" <[EMAIL PROTECTED]> > I have a perl application and I've got to install it on other people's > windows based PCs. Is there a way of packaging the perl interpreter > and the application along with the required cpan modules into a DLL

Packaging perl interpreter & appl into DLL?

2003-07-10 Thread Fuchs, Christopher
Hello, I have a perl application and I've got to install it on other people's windows based PCs. Is there a way of packaging the perl interpreter and the application along with the required cpan modules into a DLL? Alternatively, is there an mechanism on windows (which I know li

Re: bad interpreter

2002-10-31 Thread Jean Padilla
run my perl program I get: > > bash: ./checkit.pl: bad interpreter: No such file or directory > > What does that mean? > > Thanks > /Karin -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: bad interpreter

2002-10-31 Thread Felix Geerinckx
on Thu, 31 Oct 2002 08:22:08 GMT, [EMAIL PROTECTED] (Karin Friberg) wrote: > When I run my perl program I get: > > bash: ./checkit.pl: bad interpreter: No such file or directory > > What does that mean? Check your #! line at the top of your program. Does this point t

bad interpreter

2002-10-31 Thread Karin Friberg
Hi there! When I run my perl program I get: bash: ./checkit.pl: bad interpreter: No such file or directory What does that mean? Thanks /Karin

Re: perl interpreter

2002-08-27 Thread zentara
On Tue, 27 Aug 2002 00:14:17 -0700, [EMAIL PROTECTED] (Mark Goland) wrote: >Hi guys, > >I was just wondering is there a perl interpreter that will fit on one floppy >disk ?? You need to make a bootable cd to hold all the libs. Here are instructions for a method I use, which I fin

RE: perl interpreter

2002-08-27 Thread Timothy Johnson
You might have better luck just burning what you need to a CD. -Original Message- From: Mark Goland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 12:14 AM To: [EMAIL PROTECTED] Subject: perl interpreter Hi guys, I was just wondering is there a perl interpreter that will

Re: perl interpreter

2002-08-26 Thread Paul Johnson
On Tue, Aug 27, 2002 at 12:14:17AM -0700, Mark Goland wrote: > Hi guys, > > I was just wondering is there a perl interpreter that will fit on one floppy > disk ?? The perl binary itself will, but you'll probably need various modules to make it useful. -- Paul Johnson - [EMAI

perl interpreter

2002-08-26 Thread Mark Goland
Hi guys, I was just wondering is there a perl interpreter that will fit on one floppy disk ?? mark -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Interpreter

2002-07-23 Thread Marco Antonio Valenzuela Escárcega
Perl, no? Si estas usando Windows, lo > > puede encontrar aqui: > > http://www.activestate.com. Se llama ActivePerl. > > Si estas usando UNIX, se > > que lo puedes buscar en http://www.perl.org o > > http://www.cpan.org. Ahi > > tambien puedes encontrar mu

RE: Interpreter

2002-07-22 Thread Omar Shariff
> Si estas usando UNIX, se > que lo puedes buscar en http://www.perl.org o > http://www.cpan.org. Ahi > tambien puedes encontrar muchas "modules" para Perl. No... i'm looking to write an interpreter in Perl code, i download a perl code interpreter for Basic and one for pr

RE: Interpreter

2002-07-22 Thread Timothy Johnson
ot;tutorials" y lecciones en el Internet. Me falta la Argentina. Ahorita he olvidado mucho del Castellano y lo demas que aprendia sobre ella, pero cuando yo era nino, vivia en Cerrillos acerca de Salta. -Original Message- From: Omar Shariff To: [EMAIL PROTECTED] Sent: 7/22/02 8:

Interpreter

2002-07-22 Thread Omar Shariff
Hi, i'm new here and in perl... i want to do a iterpreter for the university (like c) i found one for basic and prolog, but i don't understand, can anyone help me, with a little example or a web where i can found information... (there isn't money for books!!!). Thank you PD: sorry me english, in

RE: perl interpreter

2001-08-01 Thread Bill Odom
Matthias Staudinger asked: > > Can anybody tell me if - and how - it is possible > to start my perl-scripts on computers without a > perl interpreter, without an installed perl - on > windows-computers of my coworkers? > If you mean "run Perl programs from Windows PCs

Re[2]: perl interpreter

2001-08-01 Thread Maxim Berlin
Hello Sascha, Wednesday, August 01, 2001, Sascha Kersken <[EMAIL PROTECTED]> wrote: SK> You just CAN'T. SK> What you have to do is install a Perl interpreter on each computer you want SK> to run Perl scripts on. can not agree with you because of laziness. ("The thr

Re: perl interpreter

2001-08-01 Thread Pierre Smolarek
not strictly true, you can use activestates perl2exe or whatever its called now to embed the interpreter into the script and make it an exe... file size is at least 300 - 400k but it will do what you ask :) remember, this is NOT machine compiled perl, its just fusing the two into one

Re: perl interpreter

2001-08-01 Thread Sascha Kersken
Hi! You just CAN'T. What you have to do is install a Perl interpreter on each computer you want to run Perl scripts on. The best - and most easily to install - distribution for Windows systems is ActivePerl which can be downloaded at www.activestate.com Sascha -- >Von:

perl interpreter

2001-08-01 Thread Matthias Staudinger
Sorry, I am an absolut beginner, started with perl on Saturday ;) ! Can anybody tell me if - and how - it is possible to start my perl-scripts on computers without a perl interpreter, without an installed perl - on windows-computers of my coworkers? Thanks Matthias -- To unsubscribe