There are a couple of successful commercial helpdesk products that I know of that are written in perl:  footprints and wonderdesk.

As far as your discussion with your co-worker about commercial programs written in scripting languages, I think you need to clarify what you mean by "scripting language". What is a "script" as opposed to an application? What is a scripting language? When you say script, I think of short shell scripts, windows .bat files, or short perl utilities that I've written. While these languages are all great for writing quick scripts, perl differs in that it is just as well suited for writing large and complex programs.

When you view perl as a full featured programming language and compare it to C or C++, it's clear that some things are easier to do in perl. The web based programs I mentioned do a lot of text processing, which is easier in perl where you don't have to worry about memory allocation, typing, or other low level details as much. That leads to quicker development and easier maintenance, which are important factors for a commercial product.

I think visual basic is a good counter-example to your coworker's rule. Many commercial apps are written in it. The mantra at Lucent/Bell may have worked well because many of their programs were lower-level, hardware-interfacing sorts of programs. Visual basic, perl, etc., make the user interface and some other programming tasks easy, and often rely on libraries and built-in functions for the lower level stuff.


In reply to Re: Commercial perl software? by blahblahblah
in thread Commercial perl software? by eduardo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.