survey

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dave Zhu

    #1

    survey

    Hello All,

    Is there any survey on scripting languages? I would
    like to get information on several scripting languages
    including Python, Perl, Ruby, Tcl, etc.

    Thanks

    Dave




    _______________ _______________ ____
    Celebrate Yahoo!'s 10th Birthday!
    Yahoo! Netrospective: 100 Moments of the Web

  • George Sakkis

    #2
    Re: survey

    "Dave Zhu" <zhu_dave@yahoo .com> wrote in message
    news:mailman.33 58.1109974448.2 2381.python-list@python.org ...[color=blue]
    > Hello All,
    >
    > Is there any survey on scripting languages? I would
    > like to get information on several scripting languages
    > including Python, Perl, Ruby, Tcl, etc.
    >
    > Thanks
    >
    > Dave[/color]


    After a little googling, that's what I found:




    George


    Comment

    • Alan Gauld

      #3
      Re: survey

      On Fri, 4 Mar 2005 14:14:05 -0800 (PST), Dave Zhu
      <zhu_dave@yahoo .com> wrote:
      [color=blue]
      > Is there any survey on scripting languages? I would
      > like to get information on several scripting languages
      > including Python, Perl, Ruby, Tcl, etc.[/color]

      There are several such comparisons on the web but most will
      naturally reflect the authors personal preferences. The Python
      web site has pointers to a couple and I'm sure that Perl , Tcl
      and Ruby sites will have their own.

      My own personal perspective is that I like Perl for one line
      hacks and string processing, I like Tcl because I like the
      underlying concepts and Tcl programs are often shorter than
      others. I like Ruby mainly for a few of its nice features and I
      like Python because I can read it when I'm finished!

      Those are the things that influence me, not detailed lists of
      features. I like all of the languages you mention and uise them
      for different jobs. Vive la difference...

      Oh yes, and don't forget to include Lisp/Scheme/Guile in
      your considerations. .. :-)

      Alan G
      Author of the Learn to Program website

      Comment

      • Peter Hansen

        #4
        Re: survey

        Dave Zhu wrote:[color=blue]
        > Hello All,
        >
        > Is there any survey on scripting languages? I would
        > like to get information on several scripting languages
        > including Python, Perl, Ruby, Tcl, etc.[/color]

        What kind of information? ...

        Comment

        • Cameron Laird

          #5
          Re: survey

          In article <kOydnQiaq5Bmhb TfRVn-rw@powergate.ca >,
          Peter Hansen <peter@engcorp. com> wrote:[color=blue]
          >Dave Zhu wrote:[color=green]
          >> Hello All,
          >>
          >> Is there any survey on scripting languages? I would
          >> like to get information on several scripting languages
          >> including Python, Perl, Ruby, Tcl, etc.[/color]
          >
          >What kind of information? ...[/color]

          Precisely. There are whole books <URL:
          http://www.amazon.com/exec/obidos/AS...216984-6160028 >
          on this subject; there are breezy sketches <URL:
          http://www.itworld.com/AppDev/4061/swol-0202-regex/ >
          you can read in a single setting; and 'most everything
          between. Who wants to know? Is your real interest to
          know what the job market for each language is, or the
          syntax of arithmetic in each language, or which one has
          the best Conferences, or ...?

          <URL: http://www.catb.org/~esr/faqs/smart-questions.html >

          Comment

          • beliavsky@aol.com

            #6
            Re: survey

            Dave Zhu wrote:[color=blue]
            > Hello All,
            >
            > Is there any survey on scripting languages? I would
            > like to get information on several scripting languages
            > including Python, Perl, Ruby, Tcl, etc.[/color]

            The Language Shootout at http://shootout.alioth.debian.org/ has code
            samples in many languages, both interpreted and compiled, including the
            ones you mentioned. Don't trust the lines-of-code statistics, though --
            the LOC measure is wrongly shown as zero for several codes, and comment
            lines are counted, so that languages with programmers who use more
            comments are penalized.

            You can obtain the paper "Are Scripting Languages Any Good? A
            Validation of Perl, Python, Rexx, and Tcl against C, C++, and Java." by
            Prechelt at http://page.mi.fu-berlin.de/~prechelt/Biblio/ -- his answer
            is "yes".

            Comment

            • igouy@yahoo.com

              #7
              Re: survey

              > The Language Shootout at http://shootout.alioth.debian.org/ has code[color=blue]
              > samples in many languages, both interpreted and compiled, including[/color]
              the[color=blue]
              > ones you mentioned. Don't trust the lines-of-code statistics, though[/color]
              --[color=blue]
              > the LOC measure is wrongly shown as zero for several codes, and[/color]
              comment[color=blue]
              > lines are counted, so that languages with programmers who use more
              > comments are penalized.[/color]

              afaik the LOC measure does not count comment lines - is there a
              specific example?

              Anyway, we continue to add new micro-benchmarks and deprecate old ones.

              We really welcome program contributions for the new and old tests - so
              send us some Python!

              Comment

              • D H

                #8
                Re: survey

                Peter Hansen wrote:[color=blue]
                > Dave Zhu wrote:
                >[color=green]
                >> Hello All,
                >>
                >> Is there any survey on scripting languages? I would
                >> like to get information on several scripting languages
                >> including Python, Perl, Ruby, Tcl, etc.[/color]
                >
                >
                > What kind of information? ...[/color]

                See the other responses to his question.

                Comment

                • beliavsky@aol.com

                  #9
                  Re: survey

                  igouy@yahoo.com wrote:[color=blue][color=green]
                  > > The Language Shootout at http://shootout.alioth.debian.org/ has[/color][/color]
                  code[color=blue][color=green]
                  > > samples in many languages, both interpreted and compiled, including[/color]
                  > the[color=green]
                  > > ones you mentioned. Don't trust the lines-of-code statistics,[/color][/color]
                  though[color=blue]
                  > --[color=green]
                  > > the LOC measure is wrongly shown as zero for several codes, and[/color]
                  > comment[color=green]
                  > > lines are counted, so that languages with programmers who use more
                  > > comments are penalized.[/color]
                  >
                  > afaik the LOC measure does not count comment lines - is there a
                  > specific example?[/color]

                  (this message is OT for c.l.py, sorry)

                  The "random Fortran Intel program" at

                  is said to have 40 lines, but excluding blank lines and comment lines
                  (those that start with "!") I count 22.

                  The "ackermann Fortran Intel program" at

                  is wrongly said to have 0 lines.

                  There are other cases of these problems.

                  Comment

                  • Peter Hansen

                    #10
                    Re: survey

                    D H wrote:[color=blue]
                    > Peter Hansen wrote:[color=green]
                    >> Dave Zhu wrote:[color=darkred]
                    >>> Is there any survey on scripting languages? I would
                    >>> like to get information on several scripting languages
                    >>> including Python, Perl, Ruby, Tcl, etc.[/color]
                    >>
                    >> What kind of information? ...[/color]
                    >
                    > See the other responses to his question.[/color]

                    Why would I want to do that? Did somebody else manage
                    to read his mind and post the missing information?
                    Or are you just assuming that the others have correctly
                    guessed what he intended? (FWIW, I have been skimming
                    the other responses as the thread progresses, and
                    even so your comment still makes no sense to me.)

                    -Peter

                    Comment

                    Working...