Reputation: 3957
It seems to me that some languages are generally being conceived as more beautiful than others. This seems to apply to all programming paradigms. Are there any abstract/paradigm-spanning characteristics which makes programmers consider a language as beautiful?
Edit: If you think that there is no consensus then please don't hesitate to state your own views
Upvotes: 4
Views: 302
Reputation: 68770
Here's my list:
Upvotes: 4
Reputation: 24840
There is a general trend in software towards languages and language features that are more declarative. At the moment most languages are all about the how, not about the what. A for loop indicates exactly how you want the code to behave, but it doesn't indicate what you want to happen.
To me a beautiful language is one that allows me to be declarative while not taking away the ability to optimize. The more expressive you can be in code, the better.
Upvotes: 3
Reputation: 49218
What I consider beautiful is conceptual minimalism or more precisely an orthogonal set of few general language primitives ...
as opposed to many less powerful features needed to describe almost the same thing, while permanently having to consider special cases.
Haskell for example is basically just some syntax around three primitives with an incredibly small type system (just values, generics, constructors, typeclasses) that covers everything in such a powerful way that maybe no other common language can achieve. The notion of a again value covers everything - data, functions, objects (as a collection of values), ...
Classic VB on the other side has even more than five ways of looping built-in. There is made a difference between values and functions, plain data and objects, ... And the whole almost without any possibility of writing generic code.
Upvotes: 6
Reputation: 50127
I think it needs to be somewhat similar to a natural language. Reason: the human brain seems to be wired so learning natural languages is easy. See also Nativism, and specially Chomsky. Those are a bit extreme views, but there is most likely some truth to it.
Upvotes: 2
Reputation: 838716
There aren't any universal rules for beauty. Beauty is in the eye of the beholder - everyone has their own idea of beauty.
Personally I like languages that allow you to write code that is concise but not cryptic. It expresses what I am thinking with no extra cruft or magic arcane syntax.
Upvotes: 4