vote up 13 vote down star
10

What programming language do you wish would catch on? For me it is these domain driven languages that are useful for creating micro languages in an environment, such as Boo.

Please state the reason why do you think so in your replies.

flag
show 1 more comment

49 Answers

1 2 next
vote up 30 vote down check

D Programming Language

It's (C#)++ with extras features minus the massive runtime hassle and designed to be efficient to compile and optimize. Plus, it can link with and call C code objects directly without the need for an additional interface layer or binding.

link|flag
show 2 more comments
vote up 30 vote down

I wish that Python would catch on in educational environments instead of Java. When many of my classmates took their first programming classes in Java, certain syntactical constructs got in the way of learning about programming rather than how to fight with Java syntax. Also, they all formatted their code terribly. Python gets out of the way when you don't want it, and can work the way a new programmer expects - code starts executing at the top of the file and goes down.

I also wish that Lisp would catch on because I think it's fun to code in Lisp, but I wouldn't want to force it onto anyone else.

link|flag
show 9 more comments
vote up 20 vote down

Haskell because functional programming matters.

link|flag
show 3 more comments
vote up 11 vote down

Erlang.

It's a functional programming language that has solved a lot of vexing problems with regard to distributed programming very elegantly. Light-weight processes coupled with a no shared state message passing based (actor) model for concurrency. Should have a very bright future in a multi-core world.

link|flag
show 2 more comments
vote up 10 vote down

Assembly Language. Seriously.

While I would never recommend that anybody should actually write any kind of real program in assembler, everyone who calls themselves a professional software developer should have a good understanding of it, and I think that's sadly lacking in the current rush to dynamic, interpreted languages.

link|flag
show 6 more comments
vote up 9 vote down

Haskell

Haskell is one of the most mind-bendingly beautiful and clever languages ever devised. It's really opened my mind as a programmer.

Haskell has a long way to go before it has the library support to be truly useful. I'd love to see a usable, straightforward GUI library written in the functional idiom, and not just imported bindings using Haskell's Foreign Function Interface.

REBOL

REBOL is one of the most underrated dynamic languages around. Part of the reason for this is that its depth is not readily visible. When you look at Haskell code for the first time, you know you're getting into something new and interesting. But most REBOL code looks very straightforward and almost passé, so many developers miss its depth and its very unusual (but powerful) semantics.

In fact, I'm going to quote what I said above about Haskell, because it applies to REBOL as well:

REBOL is one of the most mind-bendingly beautiful and clever languages ever devised. It's really opened my mind as a programmer.

Dylan

I would have preferred Dylan as a prefix language (like CLOS), but even the infix version is head-and-shoulders above most other programming languages.

I understand OOP backwards and forwards, but one of my gripes about it is that in most OO languages, the entire interface to the class has to be defined beforehand. Not only that, but if you have an operation that affects more than one class, you have to make a decision about which class to make that operation a method of. Clumsy!

Dylan solves both of these problems, by allowing generic multi-methods, and allowing the definition of new methods on a class at any time, even if the class resides in another, already-compiled module.

Some of this may sound like Ruby, where you can add a method to an already defined class. The similarity is superficial. Dylan's ability to do this, and the machinery behind it, is much more powerful, but outside the scope of what I can describe here.

It may also sound like C#'s extension methods. Not so. Extension methods are syntactic sugar for ordinary static methods. They are a welcome addition to C# and I try to use them without overusing them. But new methods added to Dylan classes are first-class, real methods.

Some Others

Some other languages I love are Ruby, Lua, F#, Oz, and Erlang.

link|flag
vote up 8 vote down

For a question like this to be useful, the people responding should give some reasons why they'd like that language to gain in popularity.

For instance, I'd like LISP to catch on so that we can stop hearing all the whining from LISP programmers about how it supported your favorite language feature thirty years ago.

link|flag
show 1 more comment
vote up 6 vote down

Since I got some background in languages for "Big" tasks - Basic, Pascal/Delphi, C# - and for some specialized languages - SQL, Regex - I would next look at scripting languages that I could use within other languages - Boo, Lua, Python.

Of course you can (and people actually do) build "big" applications with Python, I am more interested in the aspect of adding a script interpreter to my C# app that allows to enable scripting/usermacros.

Other than that, F# looks interesting, because the whole concept of Functional Programming is kinda new to me and I have not yet decided if it's useful or not to me.

link|flag
vote up 6 vote down

LOLCODE

This is how the code already sounds in my head...so it'd be a natural fit for me:

HAI
CAN HAS STDIO?
I HAS A VAR
IM IN YR LOOP
    UP VAR!!1
    VISIBLE VAR
    IZ VAR BIGGER THAN 10? KTHXBYE
IM OUTTA YR LOOP
KTHXBYE
link|flag
show 2 more comments
vote up 5 vote down

Clojure - Dynamic functional programming for the JVM, with a focus on concurrency.

link|flag
vote up 4 vote down

Smalltalk

link|flag
vote up 4 vote down

Inform or TADS, if only because interactive fiction (a.k.a. "text adventures") are an interesting yet under-appreciated game form.

link|flag
show 3 more comments
vote up 4 vote down

Personally I would love to see Boo or some of the more custom domain languages catch on.

link|flag
vote up 4 vote down

Ada

...and before you vote, ask yourself whether you have actually read anything about ADA! ;-)

link|flag
show 2 more comments
vote up 3 vote down

IronRuby

link|flag
vote up 3 vote down

C++ :)

link|flag
show 1 more comment
vote up 3 vote down

Our company builds in PHP, but we seem to have a heck of a time finding developers who have any sort of experience in PHP. We end up hiring people with experience in other languages and forcing them to play catch-up when they start. It definitely makes the learning curve longer and can get very frustrating.

As an extension to this, the basic principles of web development are missing from many of the applicants that we see as well.

link|flag
show 5 more comments
vote up 3 vote down

It's not a language as such but Object Oriented databasesalways sounded like a good idea that never took off.

That said I have never used one myself.

link|flag
vote up 3 vote down

F#

It is a new functional language that is going to be a first class citizen like C# and VB.Net for the .Net framework. There's already a lot of momentum around it for only having CTP releases but hopefully it will catch on more as the support for it ramps up. More info here:

http://research.microsoft.com/fsharp/fsharp.aspx

link|flag
vote up 3 vote down

Scala

For the Java programmers in particular it's great:

  • Functional Programming or Old-Skool Java Programming, which means you can think like a Java monkey now, learn FP as you get wiser
  • You can toss it in a .sh file for a bit of scripting (nowhere near as easy with java)
  • Have access to all Java code without funky redefinitions of your concurrency library - or, as I've read, "concurrency for adults"
  • Awesome use of XML, which gets you started of tossing things like SQL into the language itself instead of strings.
  • Not particularly slower than Java. Which is considered to be pretty fast these days.

As I kind of get Scala, I've completely removed all repetition in my code. It's actually remarkably easy. DRY is easy in Scala, in Java, it can be a major pain.

link|flag
vote up 3 vote down

Scheme :)

link|flag
vote up 2 vote down

PIR

Well, not so much PIR itself, as the Parrot Virtual Machine for which PIR is the pseudo-assembly language. As a stack-based virtual machine designed from the ground up to handle a diversity of languages -- especially dynamically typed languages -- Parrot has great potential. Whether it will ever reach that potential depends greatly on whether the core developers can make Parrot feature complete and robust enough to handle real-world programming needs.

But I'd really like to see it succeed.

link|flag
vote up 2 vote down

+1 Iron Ruby.

I used to wish that Pascal and/or Ada would catch on more in the non-military and non-educational sector. I think I've overwritten all that old knowledge by now though.

In about five more years when Adabas and Natural get big again, and all the old guys have retired, then I'll make some serious coin.

link|flag
vote up 2 vote down

I would like to see a merger of static and dynamic type features in some language. Let's say it would be Lua with optional typing. The biggest problem I've faced with Lua for any medium/large application is there is no compile time guarantees. In C/C++ they often take the obvious bugs out, and you get some level of confidence about a code base once it compiles. Dynamic languages leave this to runtime.

Current world is either/or, or you do a merger with two languages, one with static checking and one without.

How do Python and Ruby support this; if you give types to variable names, are misuse detected already at compile time or only at runtime?

link|flag
show 1 more comment
vote up 2 vote down

A few months ago I was looking for a library for a specific task in Perl and couldn't find anything sized correctly. I happened across a library written in Lua and it was so perfect that I spent some time learning the language. There is something very pleasing about Lua. It's very simple but all the power is there. I admit I've not used it since but I wouldn't be upset if it and I crossed paths in the future.

link|flag
vote up 2 vote down

I wish Icon would catch on.

Icon has taken two features that are currently implemented in other languages pretty much "on-top" of the language and moves them down right inside the language.

The first is exceptions. Icon constructs can Fail rather than return a Value. Failure propagates up through expressions until something can handle it. A boolean expression is the simplest example of something that can Fail. (If it Succeeds, it returns the value of the expression to the right of the comparison.) Other language constructs and library functions can also Fail and this is used to drive a lot of how things are done in Icon.

The second is generators. The idea of back-tracking in an expression should be familiar to anyone who has used regular expressions. Well, Icon puts that facility in every expression. If an element Fails, then the expression can back-track to the previous generator and get the next value. Boolean logic is implemented as a generator. String search functions are generators. Loops are often done with generators. Many loops can be done implicitly with generators.

Couple that with dynamic typing and complex constructs as first class objects (strings, tables, hash-lists, ...) and you have a language capable of some very powerful logic in very succint expressions.

link|flag
show 2 more comments
vote up 1 vote down

Python

link|flag
vote up 1 vote down

I work in a Unix (Solaris) environment, so any improvement on my shell-fu will be welcome.

I would also like to work on Python or Ruby.

link|flag
vote up 1 vote down

As soon as i have the time, i like to improve my C# or C++ skills. Preferably C#.

link|flag
vote up 1 vote down

Python

link|flag
1 2 next

Your Answer

Get an OpenID
or

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