How long does it take to make a language or how long does it take to make a good language? Language design is hard, and it takes time. As Guido van Rossum says in Masterminds of Programming Languages:
Language design is one area where agile development methodologies just don't make sense—until the language is stable, few people want to use it, and you won't find the bugs in the language definition until you have so many users that it's too late to change things.
Of course there's plenty in the implementation that can be debugged like any old program, but the language design itself pretty much requires careful design up front, because the cost of bugs is so exorbitant.
You need to do a lot of planning up front. Look at PHP: say what you will about newer versions, but earlier versions simply weren't planned well enough. And the cost of making the language better has been very high.
If you're smart, you'll take the "easy way out" and make your language as simple as possible. It will still take a while, but the language will be vastly better.