Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why create a new programming language? [closed]

Tags:

What is the real benefit of creating a new programming language? It is highly unlikely that you are going to actually use it.

In short, how will the process of creating a new language make you a better programmer?

like image 770
Pranav Avatar asked May 29 '09 14:05

Pranav


People also ask

Why do people keep creating new programming languages?

There are several reasons for creating a new language: You see deficiencies and what to create a language that is easier to use, or more robust. The domain you're working in could benefit from having it's own language (domain specific languages) You want to challenge yourself or test a theory in language design.

Is it possible to create a new programming language?

You can just take a subset of an existing language or come up with a simple variation of it and get started. However, if you have plans for creating your very own programming language, you will have to give it some thought. I think of designing a programming language as divided two phases: The big-picture phase.

What is a reason that C++ is still used today?

It's versatile. Unlike some programming languages, C++ has been able to stay useful, current, and vital, because it has been able to evolve as the needs for it have changed. Unlike other languages, C++ is adaptable, and has adapted quickly alongside programmer and software needs.


2 Answers

You will understand the decisions behind language design and garner a better overall understanding of the compromises made between readability, performance, and reliability.

Your familiarity with concepts such as recursion, closures, garbage collection, reference management, typing, data structures and how these things actually work will increase. Most programmers will utilize resources and language features better.

Similar to the way we learn new ways to code solutions when we use other languages, when we write our own languages, we explore new ways to create solutions. See Metaprogramming. Contrary to the what the question suggests, Domain Specific Languages are used in many environments.

If you're writing a compiler, you'll learn more about how computers work than you ever did before. (Depending on your goal, perhaps more than you intended to learn)

When I wrote my own sort routines in school, even re-implementations of good ones, it really drove home some of the weaknesses of some of the algorithms.

In short, there's an order of magnitude of difference in a programmer who knows how to use tools, and a programmer who knows how to make tools.

like image 182
cgp Avatar answered Sep 23 '22 03:09

cgp


I can speak from experience here ...

Fun, Domain specific problem solving, Complexity in context

I love creating new languages for fun, and for tackling domain specific problems. A very simple example might be Wikipedia markup or something as complex as Erlang which specializes in concurrent processing.

Many general purpose languages are similar, because they are general purpose. Sometimes you need a more accurate abstraction of the mechanics of the problem you are solving. Another example would be the M4 macro language.

Remember a language is not magic, it is just a collection of defined grammatical structures with implied semantics. SQL is a good example of a language for a purpose, with that purpose defined in it's syntax and semantics.

Learning how languages work, what makes a language parsable, what makes semantics sensible and the implementation of this, I think can make you a better programmer.

compilers embody alot of theory that underpins computer science:

Translation, abstraction, interpretation, data structures, state .... the list goes on. Learning these things will make you understand the implications of your program and what goes on under the hood. You can of course learn things independently but compilers are a great context to learn complex topics such as DFA/NDFA automata, stack-based parsers, abstract syntax trees ....

compilers are beautiful machines I think :)

like image 29
Aiden Bell Avatar answered Sep 23 '22 03:09

Aiden Bell