up vote 13 down vote favorite
5
share [g+] share [fb]

How does a new programming language get established? How could I design one and be famous? What steps would I need to take to get it 'Out There'?

link|improve this question

62% accept rate
feedback

18 Answers

up vote 11 down vote accepted

Read Paul Graham's essays, especially Being Popular.

link|improve this answer
1  
I would mention also his essay "The 100 year language" (paulgraham.com/hundred.html). His main point is that increasing capabilities in computers have lead to new languages, each with different trade-offs between power and succinctness. He also claims Java is a dead-end (so would be c#, I think) – Joe Pineda Sep 29 '08 at 18:52
@Joe Pineda: While I love Paul Graham's essays, "The Hundred-Year Language" is a particularly irrelevant one with respect to the question asked by the OP. He wants a new language to get "out there" and to hopefully be famous. He's looking more for Java than for Arc or even Common Lisp. – John Y Feb 6 '10 at 23:20
feedback

This reminds me of Seth Godin addressing a conference of real estate agents. He told them to quit. He said the market was just too hard and they'd be better off looking for a different job. Many of the agents got up and left.

Then...

Since he had the truly dedicated agents, he jumped right in to all the amazing real estate opportunities out there.

I imagine writing a programming language is like that. If you're going to do it, you have to get to a point where it doesn't matter what anyone else says. Are there too many programming languages? Maybe. Are you going to get famous? Probably not. But you do it anyway.

If you're going to write a new and famous programming language, there's probably nothing anyone can say to help because: "Talent hits a target no one else can hit; Genius hits a target no one else can see." - Arthur Schopenhauer

link|improve this answer
Great answer and excellent quote. – dreftymac Mar 16 '10 at 22:27
1  
Either that, or the agents left because they thought he was defeatist, and didn't want to listen to a lecture about how they should quit. The people who remained might have been those that thought he was correct about the "quitting" idea. – Beska May 28 '10 at 15:17
feedback

First of all, find a need which is not supported adequately by current languages. Design a language specific to handling that situation.

link|improve this answer
2  
And provide a good sample program showing your language's capabilities. It shouldn't be a tour thru each and every feature your language has, but rather a practical demonstration on how your language makes it easier to write that kind of programs. – Joe Pineda Sep 29 '08 at 18:36
feedback

Why not try designing a library for an existing language? jQuery, for example, makes JavaScript so much easier to use that it almost feels like a different language.

Some advantages in "getting it out there:"

*People already use the target language, so you have a built-in audience - all you have to do is show them that doing things your way is faster/easier/more powerful.

*If the above argument is sound, it's easy to try it out - just substitute the New Method for the Old Method a little at a time.

*You can improve your library incrementally - if there's not a way to do X with it, there's probably a fallback way to do it in the existing language.

link|improve this answer
feedback

Create it and put it online. If it's got something new and interesting then people will start to adopt it (e.g. ruby).

Or you could become a multi-billion multi-national company, create a standard and then start to provide more or exclusive support to developers that use your new language(s) over the non-proprietry alternatives.

link|improve this answer
feedback

Steve Yegge addresses this topic rather extensively ("extensive", in this case, referring to the length of prose).

For my part, I want to encourage people to make their own languages, because doing it makes you a world-class programmer. Seriously. Not just a better programmer, but a best programmer. I've said it before, and I'm sticking with it: having a deep understanding of compilers is what separates the wheat from the chaff. I say that without having the slightest frigging clue what "chaff" is, but let's assume it's some sort of inferior wheat substitute, possibly made from tofu.

But I really need to stop spending time telling people individually why their languages are doomed to fail. Instead, I'll summarize it in today's blog entry.

Summary: your language is doomed to fail, with probability 1 minus epsilon. If you fell off a thirty-story building, you might survive (anyone else watch the last episode of Heroes? wasn't that an awesome scene?) but for all practical purposes the odds are nil.

link|improve this answer
1  
Steve Yegge addresses all topics in the manner you describe. – ergosys Feb 6 '10 at 23:14
feedback

Many of the popular languages were initially designed in-house by a major technology company:

  • Java: Sun
  • C# and Visual Basic: Microsoft
  • C and C++: AT&T/Bell Labs
  • Perl: NASA
  • Smalltalk: Xerox PARC
  • Fortran: IBM

Languages that haven't taken this route have generally been slower to gain a following: Python and Ruby are both older languages than Java and C#, but have taken many more years to gain popularity.

So if your motivation for creating a language is fame, the quicker route is to create it for a technology leader.

link|improve this answer
And how does PHP and its popularity fit into this? Or is it the exception which proves the rule? – Chris Charabaruk Sep 30 '08 at 5:24
PHP was started by Zend Technologies that pushed PHP for years. – Yaba Sep 30 '08 at 6:51
Good point! Other examples: Ada was created by the US Defense Department, and Tcl/Tk (and its dialect Expect) at some US government office (don't remember which). All of them are nice languages, though I guess they're not more widely used since they were tainted by their bureaucratic origins :D – Joe Pineda Sep 30 '08 at 15:14
IBM created a plethora of languages as well. But I think Ruby is young, 2002 or so? – Robert S. Oct 16 '08 at 20:12
According to this article linuxdevcenter.com/pub/a/linux/2001/11/29/ruby.html Matz started development of Ruby in February 1993 and released the first alpha version in 1994. – Bruce Alderman Oct 17 '08 at 20:16
show 4 more comments
feedback

If you're more concerned with getting people to adopt your language, think of it as new technology. I'm reminded of a quote from Why Your Favorite Language Is Unpopular on arcfn:

New technologies aren’t adopted because they are great, new, and disruptive; they are adopted only if the user’s crisis solved by the technology is greater than the perceived pain of adoption.
link|improve this answer
feedback

Before you start designing an entire language from scratch think about whether it could not be easier done by creating a DSL (Domain Specific Language) for an already existing language thus leveraging tools and compiler of that language.

For example it's pretty easy to create a very specialized DSL for Groovy, while no one will ever recognize that the underlying technology is actually Groovy.

link|improve this answer
feedback

Either become bald, or grow a beard.

There is research: original and followup...

By the look of it you are neither bald nor bearded so good luck ...

Failing that a time machine and some hindsight wouldn't hurt.

link|improve this answer
feedback

There are too many procedural / imperative / object-oriented languages. Learn Prolog and Haskell and see how different they are from C++ / Java / VB etc. Think up a new execution / evaluation strategy, or a whole new programming paradigm - preferably one that lets you do more in less code (more high-level).

link|improve this answer
feedback

Please just lend your time to make tools or documentation for an existing language. We really have enough right now.

This would also be a great way to get into 'the know'.

link|improve this answer
You seem to be saying "don't innovate". Oh, how I disagree. – Jay Bazuzi Feb 6 '10 at 20:00
feedback

In what kind of language are you interested?

There is a great difference between a General Purpose language (C, Java, etc.) and a Domain Specific language, if you want to be famous try with a general purpose one (but beware of the fierce competition!).

Also, what paradigm are you thinking of? Imperative, procedural, functional, nameyouwhat, etc...

So, first think of a problem not well addressed by current languages, then try to solve it creating a new language! :)

link|improve this answer
feedback

Just build it anyway, with features you want, and make you more productive, and don't worry about how popular it is (not) going to be.

Languages are cheaper to design and implement than they used to be, what with all the parser generators and collection/graph manipulation libraries out there. The biggest advantage you have is that your language will not be designed by committee and will not have to maintain backwards compatibility with anything.

And it would be crazy not to target an existing platform like .NET, so you get a decent standard library for free (the only other realistic alternative I can think of is to translate to C and borrow native libraries from an interpreter such as PHP.)

link|improve this answer
the only other realistic alternative - You could also target the Java Virtual Machine, like clojure does. – Anthony Feb 6 '10 at 22:15
1  
@Anthony: I will give finnw the benefit of the doubt and interpret his answer as "an existing platform: for example, .NET". JVM is certainly another promising bet. If we're listing them, I would also throw JavaScript in there, as many recent projects are targeting. – John Y Feb 6 '10 at 23:28
I would consider targeting the JVM for a functional language (because fast garbage collection would be a high priority.) – finnw Feb 7 '10 at 4:00
feedback
  • Step 1: quit while you're ahead.
  • Step 2: repeat step 1.
  • Step 3: ok, so your not taking my advice, spend 5-15 year working on a nasty hard problem while dealing with politics issues, social issues, advertising issues, bikesheding issues and just plain issues.
  • Step 4: do all of that while paying for food from something else (programming languages are not profitable)
  • Step 5: expect to fail.

oh yeah and:


Seriously, creating a new language is a nowhere near trivial task. Not just because it takes a variety of skills but because it's a hard problem in each of those skills. Choosing what to put in your language to start with is a hard marketing problem in it's own right as well as a very hard technical challenge. Building a community around it is a hard social problem. And once you have a community, it becomes a hard political challenge; interacting with them, keeping them happy by fixing the bug bugs they care about and adding the features they want without destroying what you've created. Each of these in it's own right is a hard problem.

If I absolutely had to get fame and recognition somehow, I think creating a programming language would come a good dozen steps below getting stuck in the mountains, freeing my self by cutting my foot off with a pocket knife and then writing a book about it.

If, after all that, you still want to do it; as this guy and check out these NG's. He's done it and that NG has ~10 years worth of documentation on how.

link|improve this answer
feedback

I agree with James, Find a niche and fill it.

There are NEVER enough languages, thats why there are such things as XML. Theres always a need in specialized areas, wether its to struture data or functionality.

EDIT: I do agree with others here that there are many poorly implemented languages, that there is no doubt; but to use that as the agrument that there are too many in general is shortsighted.

link|improve this answer
1  
Wrong. There are way too many languages. There are too few well-designed and well-implemented languages, so I'd go with Rich B. – JesperE Sep 29 '08 at 14:36
Thats perfectly fine with me. Thats the nice thing about this place, we can agree to disagree. Althogh I defginately agree that there are too many poorly implemented languages. But that does not mean that there are too many in general. – mattlant Sep 29 '08 at 14:44
feedback

promote

link|improve this answer
feedback

Do have any idea of how many programming languages are already out there, including the ones written as someone's hobby, side project or Master's degree?

Wikipedia claims that there are "thousands", but that sounds low to me. Like rock bands, only a few outliers make it to the big time. To make it big you have to have had lots of practice already, do something new but don't make any big mistakes, be at the right place at the right time, and be very lucky. This applies to taking up the guitar or the code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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