vote up 1 vote down star
3

Hello,

My friends and I were discussing about what development languages need the most, what is it?

Topics that we discussed

  • Memory Management
  • Internet Compatibility
  • Cross-Platform
  • Good Frameworks
flag
2  
I'd make this a wiki... – Austin Salonen Oct 26 at 16:56
I'm pretty sure this is a duplicate, but I don't remember the title of the other. – mmyers Oct 26 at 16:57
3  
if you want a good discussion on this topic, you might want to indicate some of the details of what you and your friends were discussing. – akf Oct 26 at 16:57
3  
Taken from the SO FAQ: "Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!" – gnovice Oct 26 at 17:03
What languages need the most? A syntax I guess, otherwise they wouldn't be languages... – Nate Oct 26 at 17:09

closed as subjective and argumentative by gnovice, Brian Rasmussen, Jeff Atwood Oct 26 at 20:14

9 Answers

vote up 0 vote down

Documentation.. Ideally a large user following with lots of info on the internet.

All libraries with source code available so I can work out whats going on.

link|flag
vote up 0 vote down

Support for the most common constructions (linked list, tree, stack) either natively or through an external API. We don't need to continually have to reinvent the wheel.

link|flag
vote up 1 vote down

IMHO, I think that Garbage Collection is an important programmer-efficiency feature in nowdays...

link|flag
vote up 1 vote down

a ton of people writing good libraries under the MIT license ;)

link|flag
vote up 1 vote down

Mind reading feature. Seriously subjective question.

link|flag
vote up 4 vote down

Really, what most development languages need is just for people to understand them and use them as they are intended.

I've found that the features people have the most trouble with in any language are the ones that they don't know how to use, or don't know why they are there.

link|flag
vote up 0 vote down
  • Function and target: A computer programming language is a language used to write computer programs, which involve a computer performing some kind of computation or algorithm and possibly control external devices such as printers, disk drives, robots, and so on. For example PostScript programs are frequently created by another program to control a computer printer or display. More generally, a programming language may describe computation on some, possibly abstract, machine. It is generally accepted that a complete specification for a programming language includes a description, possibly idealized, of a machine or processor for that language. In most practical contexts, a programming language involves a computer; consequently programming languages are usually defined and studied this way. Programming languages differ from natural languages in that natural languages are only used for interaction between people, while programming languages also allow humans to communicate instructions to machines.

  • Abstractions: Programming languages usually contain abstractions for defining and manipulating data structures or controlling the flow of execution. The practical necessity that a programming language support adequate abstractions is expressed by the abstraction principle;[8] this principle is sometimes formulated as recommendation to the programmer to make proper use of such abstractions.

  • Expressive power: The theory of computation classifies languages by the computations they are capable of expressing. All Turing complete languages can implement the same set of algorithms. ANSI/ISO SQL and Charity are examples of languages that are not Turing complete, yet often called programming languages.

from Wikipedia

link|flag
1  
Why does your source point to this question? – gnovice Oct 26 at 17:00
2  
You need to state more clearly that this is shamelessly cut and pasted from en.wikipedia.org/wiki/Programming_language (your "source" link is broken), and this needs to be community wiki. – Daniel Pryden Oct 26 at 17:01
sorry, I copy-pasted the wrong URL. link has been fixed. I'll make it more clear if it makes you happy. No intention of concealing the fact that it's from wiki – Mark Oct 26 at 17:02
vote up 1 vote down

Active developers.

link|flag
vote up 0 vote down

higher order functions

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.