- What is an expressive language?
- What does it mean when someone says that Perl is an expressive language?
|
1
|
|
||||||||||||||||||
|
|
|
An "expressive" language is a language that allows you to easily express logical concepts in code. People often call Perl expressive since it allows you to use many different approaches to express a specific concept, so it's very flexible in this regard. (There is a lot of debate about whether this is a good thing or not, though...) |
||
|
|
|
|
Read through Larry Wall's "State of the Onion" address (find them with Google). In the first several speeches he talks about the idea and philosophy of Perl and how he thinks about them. They can be quite enlightening for the newcomer to Perl. |
||
|
|
|
|
The idea behind Perl's syntax is not only TMTOWTDI but an attempt to mimic natural language (as far as that's possible while keeping the precision of computer language). The goal is that Perl should be a language that you can become fluent in, like a native speaker, not like a tourist using a phrasebook. One of the available ways to write the code should have a similar form to the way you think about the problem. When the shape of the code in the editor matches the shape of the problem in your head, you can get to the stage of having running and testable code more quickly, because there isn't a conscious step of translating between what you mean and what the computer wants to hear. This is why people will often tell you that Perl is excellent for prototyping. It's this, not concision or TMTOWTDI, that's really meant by Perl's "expressiveness". Natural languages provide pronouns; Perl provides Some thoughts of Larry Wall's about the influence of natural languages on Perl: Natural Language Principles in Perl. |
||||||||||||
|
|
|
Let's see, Merriam-Webster (s.v, 'expressive') offers this:
I think that actually fits Perl to a T because of what other answerers are saying (1) there's more than one way to do things (so Perl has lots of ways to allow the programmer to express her ideas) and (2) Perl is often relatively compact (so you can express a lot with a little). But I would add that Perl's pervasive tendency towards DWIM (do what I mean) is a big part of it as well. |
||||
|
|
|
In this context I think it means you can do a lot of things without writing too much code. For example one-liners:
Or Moose:
Or the concept of context:
Or the Schwartzian transform:
This is good, because you can have things done the way you want. (If you feel like shotgunning through the problem, you can.) On the other hand it’s sometimes bad, because you can have things done the way you want :) |
||||||||||||||||||||
|
|
|
They mean TIMTOWTDI.
|
||
|
|
