in reply to RE: How big is yours?
in thread How big is yours?
Seriously though, the question is not really how big a perl program can be, there is no reason why you couldnt write full applications in perl (the people I work for, for example, have a working perl library exceeding 100,000 lines of code) the big question is 'is Perl really the right language?'
Perl has a number of great things going for it, primarially things like modules that avoid the need to reinvent the wheel and it's easy syntax structure that allows the programmer to concentrate on program flow rather than havng to worry about every little detail. The result of this is most perl programs will be smaller (in terms of lines) and more rapidly written than in other languages. However, the exact same thing works in reverse when it comes to program efficency. Perl is, by definition, an inefficent language when it comes to computer resources. It has to be simply due to the fact that it is interpreted 'on the fly'.
Therefore, while perl could be used for almost any program, there are a number of situations that preclude it.
A shame really ;)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: How big is yours?
by chromatic (Archbishop) on Oct 13, 2000 at 07:41 UTC |