Re: Compiler options perl

2009-04-18 Thread Jenda Krynicky
From: edw...@yandex.ru > > The problem is that I did this benchmarking before. Actually, the code > snippets above are run in > a very long cycle, and if we have "foreach" statement, then we need to store > some value for loop iteration and > even one assignment of this variable consumes time

Re: Compiler options perl

2009-04-17 Thread edwin6
; > . > > > > block[$_ = 100] > > > > Where block[$_ = n] means "block" with all occurences of $_ substituted with > > n. > > Of course, we presume that array like (1..100) is known at compile time. > Can you explain why you want to do this? &g

Re: Compiler options perl

2009-04-17 Thread Chas. Owens
On Fri, Apr 17, 2009 at 12:16, Jim Gibson wrote: > On 4/16/09 Thu  Apr 16, 2009  1:39 PM, "edw...@yandex.ru" > scribbled: > >> Hello, >> >> I would like to know, how to force perl unfold "foreach" expression during >> the >> compilation, i.e. I want next code: snip > Can you explain why you want

Re: Compiler options perl

2009-04-17 Thread Jim Gibson
t; } > > to be compiled like this: > > block[$_ = 1] > > block[$_ = 2] > > block[$_ = 3] > > . > . > . > > block[$_ = 100] > > Where block[$_ = n] means "block" with all occurences of $_ substituted with > n. > Of course, we presume

Compiler options perl

2009-04-17 Thread edwin6
Hello, I would like to know, how to force perl unfold "foreach" expression during the compilation, i.e. I want next code: foreach (1..100) { block } to be compiled like this: block[$_ = 1] block[$_ = 2] block[$_ = 3] . . . block[$_ = 100] Where block[$_ = n] means "block" with

Re: compiler output/global variable

2008-09-11 Thread Oliver Block
Hello Ray, Thanks for your response. I could already solve the problem. It was caused by a syntax error in a different line within the same sub.:-) I read my source code over and over and finally find the error. Best Regards, Oliver Block Am Donnerstag, 11. September 2008 16:30:49 schrieb Ra

Re: compiler output/global variable

2008-09-11 Thread John W. Krahn
Oliver Block wrote: hello everybody, Hello, what may cause perl to give the following command line output Global symbol "$form" requires explicit package name at /.../Address.pm line 44. even if the variable $form is declared in line 16 as follows my $form = $self->formbuilder;

Re: compiler output/global variable

2008-09-11 Thread Raymond Wan
Hi Oliver, You have to show more of the source code -- but it sounds like you've declared $form with "my" within a function/subroutine and it is not visible outside the function? Could that be the problem? Ray Oliver Block wrote: hello everybody, what may cause perl to give the followin

compiler output/global variable

2008-09-11 Thread Oliver Block
hello everybody, what may cause perl to give the following command line output Global symbol "$form" requires explicit package name at /.../Address.pm line 44. even if the variable $form is declared in line 16 as follows my $form = $self->formbuilder; within a sub of a class definit

Re: Could anyone point me to a good site for pearl compiler download.

2008-08-23 Thread Jim
On 21 Aug., 20:04, [EMAIL PROTECTED] (Rich Murphy) wrote: > Could anyone point me to a good site for pearl compiler download. On windows I use the ActiveState distribution. They have a free PERL interpreter too. http://www.activestate.com/Products/activeperl/index.mhtml -- To unsubscribe

Re: Could anyone point me to a good site for pearl compiler download.

2008-08-22 Thread Rob Dixon
rich murphy wrote: > > Could anyone point me to a good site for pearl compiler download. The short answer is here http://www.perl.org/ But it depends on what platform you are working on, and whether you know what the perl compiler is. Tell us more about what you want to do if this d

Could anyone point me to a good site for pearl compiler download.

2008-08-22 Thread rich murphy
Could anyone point me to a good site for pearl compiler download. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Need C compiler to run under Windoze 98

2005-09-17 Thread Paul Plamondon
Perl Mavens, I need a C compiler that I can run under Windows 98. Already d/l Cygwin and gcc-4.0.1 but not sure how to get things working correctly. I am working with a mentor locally to get my skills improved; can someone else point me in the correct direction to complete this necessary piece

Re: I am looking for a free perl compiler.

2004-12-08 Thread JupiterHost.Net
Jonathan Paton wrote: I think it's *HIGHLY* ironic that the original poster is looking for a solution that allows him to close off his code, but demands that it be a freely distributable solution to his problem. My first reaction is: If you want to lock the door on your code (and I think that is

Re: I am looking for a free perl compiler.

2004-12-08 Thread Lawrence Statton
the application than try to reverse engineer someone's obfuscated version. (I had exactly that happen for a work-related project. After spending three days deobfuscating, I threw up my hands and rewrote from scratch in one afternoon.) I was looking into a binary-output Perl compiler some ti

Re: I am looking for a free perl compiler.

2004-12-08 Thread JupiterHost.Net
Lawrence Statton wrote: So the conclusion is that perl code cannot be really hidden (for comercial purposes)? A license is equal to zero in some countries... so that's not a solution. Well - never say, "Never" ... I think the output from perlcc is pretty inscrutable for any but the most dedicated a

Re: I am looking for a free perl compiler.

2004-12-08 Thread Tor Hildrum
On Wed, 8 Dec 2004 15:26:58 -0500 (EST), Chris Devers <[EMAIL PROTECTED]> wrote: > On Wed, 8 Dec 2004, Octavian Rasnita wrote: > > > So the conclusion is that perl code cannot be really hidden (for > > comercial purposes)? > > For any purposes, yes, code cannot be hidden. It can be hidden, but i

Re: I am looking for a free perl compiler.

2004-12-08 Thread Lawrence Statton
> So the conclusion is that perl code cannot be really hidden (for comercial > purposes)? > A license is equal to zero in some countries... so that's not a solution. > Well - never say, "Never" ... I think the output from perlcc is pretty inscrutable for any but the most dedicated attacker, and a

Re: I am looking for a free perl compiler.

2004-12-08 Thread Chris Devers
te? It works. > > The problem is I can only get a evaluate license for PDK-Pro-6.0, so > what I am looking for is a compiler more powerfull than perlcc, and > must be free. Again, the question stands: why do you want to do this? Nearly every instance of Linux in the world is goi

Re: I am looking for a free perl compiler.

2004-12-08 Thread Chris Devers
On Wed, 8 Dec 2004, Octavian Rasnita wrote: > So the conclusion is that perl code cannot be really hidden (for > comercial purposes)? For any purposes, yes, code cannot be hidden. More broadly, for any interpreted language -- Perl, Python, Tcl, even ones like Java and Visual Basic -- it's fair

Re: I am looking for a free perl compiler.

2004-12-08 Thread Octavian Rasnita
AIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, December 08, 2004 9:23 PM Subject: Re: I am looking for a free perl compiler. > *** Somewhat off-topic *** -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: I am looking for a free perl compiler.

2004-12-08 Thread Jonathan Paton
> *** Somewhat off-topic *** > * Obfuscators don't work well enough to bother with. If you can't have > people reading your code, don't use Perl, or better still, use Perl but > don't allow access to the machine where the program runs (e.g. put up a > web interface to a service under your contro

Re: I am looking for a free perl compiler.

2004-12-08 Thread JupiterHost.Net
I am looking for a free perl compiler. My /usr/bin/perl was free :) I suspect he wants something for Windows. By "compiler", I further suspect that he wants something that will generate .exe files that can be run without a perl.exe on the system. If the usual line of thinkin

Re: I am looking for a free perl compiler.

2004-12-08 Thread Edward WIJAYA
On Wed, 8 Dec 2004 12:56:15 +0800, Xun Yu <[EMAIL PROTECTED]> wrote: The problem is I can only get a evaluate license for PDK-Pro-6.0, so what I am looking for is a compiler more powerfull than perlcc, and must be free. I don't know if this is really what you want, but you can try

Re: I am looking for a free perl compiler.

2004-12-07 Thread Xun Yu
I am going to compile a perl script to binary on linux, I tried perlcc, I doesn't always works well. I tried the same script with perlapp from PDK-Pro-6.0 from ActiveState? It works. The problem is I can only get a evaluate license for PDK-Pro-6.0, so what I am looking for is a compiler

Re: I am looking for a free perl compiler.

2004-12-07 Thread Chris Devers
On Tue, 7 Dec 2004, JupiterHost.Net wrote: > Xun Yu wrote: > > > I am looking for a free perl compiler. > > My /usr/bin/perl was free :) I suspect he wants something for Windows. By "compiler", I further suspect that he wants something that will generate .exe fil

Re: I am looking for a free perl compiler.

2004-12-07 Thread JupiterHost.Net
Xun Yu wrote: Hi, guys, hello, I am looking for a free perl compiler. My /usr/bin/perl was free :) I tried PDK-Pro-6.0 from ActiveState. It works pretty well. But it's not free. Where can I get a free perl compiler, as powerful as PDK-Pro-6.0 from ActiveState? My /usr/bin/perl is pretty pow

I am looking for a free perl compiler.

2004-12-07 Thread Xun Yu
Hi, guys, I am looking for a free perl compiler. I tried PDK-Pro-6.0 from ActiveState. It works pretty well. But it's not free. Where can I get a free perl compiler, as powerful as PDK-Pro-6.0 from ActiveState? Thanks in advance. Best wishes, Xun -- Best wishes, Xun -- To unsubscri

RE: C Compiler

2004-08-04 Thread Witzke, Rob
It has a lot to do with perl if your modules can't install without it. -Original Message- From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 10:55 AM To: Witzke, Rob; PerlBeginners (E-mail) Subject: Re: C Compiler > Any recommendations on a c com

RE: C Compiler

2004-08-04 Thread NYIMI Jose \(BMB\)
> -Original Message- > From: Witzke, Rob [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 04, 2004 4:24 PM > To: PerlBeginners (E-mail) > Subject: C Compiler > > > Any recommendations on a c compiler to run on a Sun Sparc box? > > Rob

RE: C Compiler

2004-08-04 Thread Bliss, Kevin
gcc, it is available as a solaris package at sunfreeware.com -Original Message- From: Witzke, Rob [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 7:24 AM To: PerlBeginners (E-mail) Subject: C Compiler Any recommendations on a c compiler to run on a Sun Sparc box? Rob -- To

RE: C Compiler

2004-08-04 Thread West, William M
> >Any recommendations on a c compiler to run on a Sun Sparc box? > >Rob this is bordering on off-topic, but since a compiler is useful for certain Perl modules, go get gcc http://gcc.gnu.org/install/binaries.html this is a page to get gcc when you can't compile it

Re: C Compiler

2004-08-04 Thread Wiggins d Anconia
> Any recommendations on a c compiler to run on a Sun Sparc box? > > Rob > This has what to do with Perl? http://gcc.gnu.org/ http://danconia.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <

C Compiler

2004-08-04 Thread Witzke, Rob
Any recommendations on a c compiler to run on a Sun Sparc box? Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

How to install when no c compiler allowed?

2004-07-09 Thread Wagner, David --- Senior Programmer Analyst --- WGO
How do you move what is necessary from one machine to another machine of like architecture and operating system when NO c compiler allowed? We see the make install modules and the packaging list. Is there a module which will do this? If not would using the list from the make be the way

Getting the free Microsoft compiler

2004-07-05 Thread NYIMI Jose (BMB)
al Message- From: Alan Stewart [mailto:[EMAIL PROTECTED] Sent: Saturday, July 03, 2004 3:30 AM To: [EMAIL PROTECTED] Subject: Getting the free Microsoft compiler to compile PAR Even though Autrijus kindly supplies pre-compiled PAR packages, I always roll my own and I have been using VC++ 6.0. I&#x

Re: problem about compiler

2004-04-14 Thread david
Pagoda wrote: > I tried 5.8.3, 5.8.2, 5.8.0, 5.6.1 i tried 5.8.0 in a linux box and there is no error. are you using a different os? > >> Pagoda wrote: >> >> > problem about compiler >> > >> > Below is the code: >> > #! /usr/bin/p

Re: problem about compiler

2004-04-14 Thread pagoda
Thank you. - Original Message - From: "zatoichi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 9:43 AM Subject: Re: problem about compiler > Pagoda wrote: > > > problem about compiler > > > > Below is the code: &g

Re: problem about compiler

2004-04-14 Thread pagoda
Thanks a lot. I'll try them. - Original Message - From: "Jenda Krynicky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 13, 2004 8:16 PM Subject: Re: problem about compiler > From: "pagoda" <[EMAIL PROTECTED]> > &g

Re: problem about compiler

2004-04-14 Thread pagoda
I tried 5.8.3, 5.8.2, 5.8.0, 5.6.1 - Original Message - From: "david" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 14, 2004 2:39 AM Subject: Re: problem about compiler > Pagoda wrote: > > > problem about compiler > > >

Re: problem about compiler

2004-04-13 Thread david
Pagoda wrote: > problem about compiler > > Below is the code: > #! /usr/bin/perl > use Cwd qw/cwd abs_path/; > print cwd, "\n"; > > I compiled my code: > $perlcc -o hello hello.pl > i compiled the above without any problem > the following inf

Re: problem about compiler

2004-04-13 Thread Jenda Krynicky
From: "pagoda" <[EMAIL PROTECTED]> > problem about compiler > > Below is the code: > #! /usr/bin/perl > use Cwd qw/cwd abs_path/; > print cwd, "\n"; > > I compiled my code: > $perlcc -o hello hello.pl > > the following infor were prin

Re: problem about compiler

2004-04-13 Thread zatoichi
Pagoda wrote: > problem about compiler > > Below is the code: > #! /usr/bin/perl > use Cwd qw/cwd abs_path/; > print cwd, "\n"; > > I compiled my code: > $perlcc -o hello hello.pl > > the following infor were printed to stdout: > Note (pr

problem about compiler

2004-04-12 Thread pagoda
problem about compiler Below is the code: #! /usr/bin/perl use Cwd qw/cwd abs_path/; print cwd, "\n"; I compiled my code: $perlcc -o hello hello.pl the following infor were printed to stdout: Note (probably harmless): No library found for -lposix pccslkmZ.c: In function `perl

Re: CPAN.pm: How do you specify an alternate compiler?

2003-11-05 Thread Steve Grazzini
Makefile? You need to use the same compiler that was used to build perl. MakeMaker (the script that creates the Makefiles) gets that information from the Config module --> % perl -MConfig -le 'print "@Config{ qw/cc ccflags/ }"' cc -D_REENTRANT -D_GNU_SOURCE -DDEBUGGING

CPAN.pm: How do you specify an alternate compiler?

2003-11-05 Thread Rich Fernandez
I get all kinds of errors on the compiler flags... Thanks for any help! richf -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: c compiler needs....disregard

2003-08-02 Thread Hodge, Jeff F (ECIII)
Please disregard. tks -jh -Original Message- From: Hodge, Jeff F (ECIII) [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 2:33 PM To: '[EMAIL PROTECTED]' Subject: c compiler needs while config-ing perl 5.8.0 with sh Configure -Accflags="-DPERL_Y2KWARN -DPERL

c compiler needs

2003-08-02 Thread Hodge, Jeff F (ECIII)
while config-ing perl 5.8.0 with sh Configure -Accflags="-DPERL_Y2KWARN -DPERL_POLLUTE_MALLOC" I am getting an error that I need a C compiler...but I have gcc installed through SuSe 8.0 linux... What's the deal?

RE: default C compiler

2002-12-06 Thread Yacketta, Ronald
To: [EMAIL PROTECTED] Subject: default C compiler sun solaris have come with perl, But it is use cc as default c compiler. I don't have license Sun C compiler, Can I change to C compiler to gcc. Thanks in advance -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

default C compiler

2002-12-06 Thread Tony Yi
sun solaris have come with perl, But it is use cc as default c compiler. I don't have license Sun C compiler, Can I change to C compiler to gcc. Thanks in advance -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: PERL Compiler

2002-08-29 Thread Kristina Nairn
If you are using activestate try ppm install If you are using a different flavor try perl -MCPAN -e "install " Cheers, Kristina I wanted to get the additional modules, so I downloaded the stable.zip onto my NT machine and unzipped it, but I haven't been able to get it to recogni

RE: PERL Compiler

2002-08-29 Thread Kirby_Sarah
EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 8:23 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: PERL Compiler As you're a newbie, I thought I'd mention that you don't need to compile your Perl code, it's done for you by the interpreter before being run. The interpr

Re: PERL Compiler

2002-08-29 Thread Nigel Peck
As you're a newbie, I thought I'd mention that you don't need to compile your Perl code, it's done for you by the interpreter before being run. The interpreter for Win2k is at http://www.activestate.com/ You probably already know but just in case... Nigel >>> "Michael Edwards" <[EMAIL PROTECTE

RE: PERL Compiler

2002-08-29 Thread Timothy Johnson
can't remember who makes it. -Original Message- From: Michael Edwards [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 1:25 PM To: [EMAIL PROTECTED] Subject: PERL Compiler I'm a sorta newbie to PERL and i was wondering if therte are any good PERL compilers. Back in June

PERL Compiler

2002-08-29 Thread Michael Edwards
I'm a sorta newbie to PERL and i was wondering if therte are any good PERL compilers. Back in June I started to experiment with PERL but it takes a long time to write. I have a Win 2000 PC. Cheers Mikes -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

Perl compiler

2002-07-18 Thread Cleiton L. Siqueira
Dear, I've tried to compile a script perl through perlcc, but it has returned me the following error: bash-2.04# perlcc teste.pl Compiling teste.pl: --

Re: Perl Compiler

2002-05-30 Thread David T-G
Janek -- ...and then Janek Schleicher said... % % Harry Jackson wrote at Thu, 30 May 2002 18:13:57 +0200: % [short post with long disclaimer -- replicated in its entirety! -- snipped] % % Allthough, I'm very interested in your information, something seems wrong. % There's one line pure inform

Re: Perl Compiler

2002-05-30 Thread Janek Schleicher
Harry Jackson wrote at Thu, 30 May 2002 18:13:57 +0200: > Not sure if anyone is interested but have a look for perlcc on google. It compiles >perl into c > > Harry > > > > >* >COLT > Telecommunications > R

Re: Perl Compiler

2002-05-30 Thread drieux
On Thursday, May 30, 2002, at 09:13 , Jackson, Harry wrote: > > Not sure if anyone is interested but have a look for perlcc on google. It > compiles perl into c > > Harry and if you read the perldoc on it, it's a beta release and is not guranteed to be sane or stable and it's not the stuff

Perl Compiler

2002-05-30 Thread Jackson, Harry
Not sure if anyone is interested but have a look for perlcc on google. It compiles perl into c Harry * COLT Telecommunications Registered in England No. 2452736 Registered Office: Bishopsgate Court, 4 Norton

Re: Installing modules without a C compiler

2002-05-14 Thread Elaine -HFB- Ashton
Craig Moynes/Markham/IBM [[EMAIL PROTECTED]] quoth: *> *> *>Ok that seems to do the trick, the only thing I am worried about is during *>the installation to the real directory some data is appended to *>perllocal.pod. The documentation for MakeMaker say you can disable this *>with pure_install, bu

Re: Installing modules without a C compiler

2002-05-13 Thread Craig Moynes/Markham/IBM
cc: [EMAIL PROTECTED] Subject: Re: Installing modules without a C compiler 05/13/02 03:

Re: Installing modules without a C compiler

2002-05-13 Thread Chas Owens
On Mon, 2002-05-13 at 15:01, Craig Moynes/Markham/IBM wrote: > Hi all, > Our servers are set up with a single development box, that contains > all the compilers and what not. All the modules I need to install have to > be compiled on the development box, and then installed on each server (m

Installing modules without a C compiler

2002-05-13 Thread Craig Moynes/Markham/IBM
Hi all, Our servers are set up with a single development box, that contains all the compilers and what not. All the modules I need to install have to be compiled on the development box, and then installed on each server (make install). This works for now, (thanks to nfs) but I would like t

Re: c compiler for Makefile.PL

2001-12-13 Thread Jenda Krynicky
From: "Lanceo" <[EMAIL PROTECTED]> > What C compiler does a Makefile.PL file expect? The one with which your perl was compiled. I think you can force Make::Maker to create makefiles for gcc, but I don't remember what exactly has to be changed in Conf

c compiler for Makefile.PL

2001-12-13 Thread Lanceo
What C compiler does a Makefile.PL file expect? I am having problems installing the MD5 module into a Perl installation on NT4, and I get a 'can't compile test program' error. When I look at the Makefile.PL sourcecode, it seems to want to issue the commands to the compiler in

Compiler

2001-07-03 Thread RL Autry
The question came up. Is a compiler even needed with Perl? Someone just told us you don't compile it, and that is one of the advantages to it. Thanks, RL

Re: perl compiler and editor for windows

2001-06-08 Thread RICHARD A. NAKROSHIS (Contractor)
m A favorite > among Microsoft. ;) > > -Chris > > -Original Message- > From: Gabriel Presas [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 07, 2001 6:53 AM > To: Chris Sauer; [EMAIL PROTECTED] > Cc: Gabriel Presas (rat432) > Subject: Re: perl compiler and

RE: perl compiler and editor for windows

2001-06-08 Thread ckkirsten
PROTECTED] Cc: Gabriel Presas (rat432) Subject: Re: perl compiler and editor for windows http://www.gnu.org/software/emacs/ emacs works well in linux/windows... free and easy to use - Original Message - From: "Chris Sauer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: We

Re: perl compiler and editor for windows

2001-06-07 Thread Gabriel Presas
http://www.gnu.org/software/emacs/ emacs works well in linux/windows... free and easy to use - Original Message - From: "Chris Sauer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 11:25 PM Subject: perl compiler and editor for windows

Re: perl compiler and editor for windows

2001-06-06 Thread Richard Hulse
6/06/2001 -0700, you wrote: > > > Help me I have been desperatly looking for a compiler and editing > > > program for windows that is free. Please help me!

Re: perl compiler and editor for windows

2001-06-06 Thread Alan F. Larimer, Jr.
> > Help me I have been desperatly looking for a compiler and editing > > program for windows that is free. Please help me! > > You need an interpreter; you can use any text editor you want. > There are some IDEs (if you don't know what that is, think of > it as a w

Re: perl compiler and editor for windows

2001-06-06 Thread daniels tashi robert
as molasses. I use Notepad, personally. ActiveState also makes the interpreter you'll probably want to download -- it's called ActivePerl. This and Komodo can be found at www.activestate.com. Enjoy. On Wed, 6 Jun 2001, Chris Sauer wrote: > Help me I have been desperatly looking for a

RE: perl compiler and editor for windows

2001-06-06 Thread Brian P. Hanley
Perl does not use a compiler like C/C++ or Java. So you do not need that. All you really need is a decent Text editor. Textpad (http://www.textpad.com) is my personal favorite. It is shareware and well worth the few dollars charged for a license. The syntax highlighting and clip libraries

perl compiler and editor for windows

2001-06-06 Thread Chris Sauer
Help me I have been desperatly looking for a compiler and editing program for windows that is free. Please help me!