http://qs321.pair.com?node_id=241876


in reply to Re: (A6) Perl 6, a general-purpose language?
in thread (A6) Perl 6, a general-purpose language?

Do you mean that Perl isn't as fast as C and C++ in some domains?

Well, yes. There was yet another discussion about it recently (Confirming what we already knew). A6 made me wonder whether debates like that one might actually go away (well, they never will, but they might become more pointless).

Update: C/C++ already does produce optimized native assembly code. Java IMHO becomes more useful through JIT compilers. I hope the same thing for Perl 6.

Detailed typing is harder to understand.

I'm not saying that I like the type system in C++ or Java. And if you got the impression I want Perl 6 to be like that, I certainly expressed myself in an utterly obfu way :). What I mean is that things like interfacing with system libraries usually require strict and detailed typing. So far, there was always a need for C to do it. I wonder whether the goal is actually to eliminate the need for C for these purposes and do it all in pure Perl 6.

In my opinion, Perl is already a general purpose language.

Well, we still see a lot of software nobody would care to write in Perl. (I mentioned some examples.) I'm not really saying that Perl should become a language you can write an OS in, I'm just wondering where we are heading.

If anything, I'd much rather use a dynamically typed language as a general purpose language.

I agree. Strict typing (hopefully) is going to be the exception. But sometimes, you need the exception.

  • Comment on Re: (A6) Perl 6, a general-purpose language?

Replies are listed 'Best First'.
Re: Re: (A6) Perl 6, a general-purpose language?
by Anonymous Monk on Mar 11, 2003 at 03:55 UTC
    I'm not really saying that Perl should become a language you can write an OS in

    Good, because anything you can write a half-decent operating system in is NOT a general purpose programming language. It would be far too low-level to be useful.

    Perl, on the other hand, is definately general purpose. If you want evidence of this, look at the CPAN. Image/audio manipulation to web crawling to processing hundreds of file formats to cgi scripts to mod_perl to natural language processing and back again. If that isn't general purpose, what is?

      Good, because anything you can write a half-decent operating system in is NOT a general purpose programming language. It would be far too low-level to be useful.

      Yes, that's why I am always astonished why people keep on writing apps in C ;-)

        I'm not sure if you mean that sarcastically or not, but it is true. 98% of apps written in c, should not be. A higher level language (such as Perl) would save on development costs, produce far more stable/secure code while meeting performance requirements.

        Then again, if companies want to be stupid, it's not my money they're losing.