DEV Community

stereobooster
stereobooster

Posted on • Originally published at stereobooster.com on

Write you a programming language

I started to collect small programming languagess that you can implement in a relatively small amount of time for educational purposes.

What does it mean to write a language? One way to put it is: you need to write a program that will interpret or compile programming language (New language). But to write a program you need to use some existing programming language (Host language). It is also possible to write a program in raw machine code.

interpreter vs compiler

The first choice to make is: will you write an interpreter or compiler (or both). How do they relate?

  • computer (machine) is an interpreter for the machine code (also language, but not human readable)
  • compiler translates source code into another language, for example
    • into high-level programming language (aka transpilation)
    • into machine code for virtual machine (aka bytecode), for example, JVM
    • into a low-level language, for example, assembly, which would later be translated (by another program) to a machine code
  • interpreter actually executes instructions, for example, JavaScript, Lisp, Machine, JVM, gnuplot, calculator, etc.

The interesting part is that you can write both interpreter and compiler for the programming language, for example, Lisp (CommonLisp), Scheme (Chez Scheme).

Another interesting observation is that you can write an interpreter or compiler of the language in the language itself (New = Old). You need to write the first compiler or interpreter in a different language and then you can “bootstrap” and write the next versions using the language itself (aka metacircular evaluator, self-hosting). I guess another name for it can be dogfooding.

We can categorize tutorials based on host and “new” languages, for example:

If language is implemented as a compiler, then it translates source language to a target language. Source language is the same as the “new language”, but the target language is not the same as a host language. We can categorize tutorials based on source and target languages, for example:

Memory management

The next question to ask is how your programming language will manage memory:

  • it will not, for example, some kind of declarative PL
  • you don’t care. Allocate memory and let OS clean it up after application terminates
  • static memory management, like in C
    • special case Rust’s borrow checker
    • special case Zig
  • garbage collection, like in Lisp, JavaScript, etc.
    • special case Pony’s reference capabilities
  • Maybe mix of static and GC)?

Type system

The next question to ask is what your PL will do with types:

  • untyped (when you have only one type), for example, lambda calculus or calculator
  • dynamically typed, for example, Lisp
  • statically typed, for example, Haskell
  • gradually typed, for example, TypeScript

If you choose to use a sound type system there is a big choice of the type system: Martin-Lof (for example, ML), dependent types (for example, Idris), linear types, etc.

Paradigms

All the above apply to every PL. Now you can choose other features that would define for programming paradigm (one or more).

For example, you allow first-class functions, eager evaluation (with call-by-sharing), dynamic types, macros and you get a Lisp.

  • If you use hygienic macros and continuations, you get a Scheme (more or less).
  • If you use immutable data types, you get a Clojure (more or less).

Or you allow first-class functions, lazy evaluation, static types and you get ML.

See: Programming Paradigms for Dummies: What Every Programmer Should Know, What is a Programming Paradigm?

Additional features

On top of that you can add some features, like:

  • module system
  • tail call optimization
  • functional-style pattern matching
  • or prolog style pattern matching (unification)
  • etc.

Parser generators

One of the success factors of MAL is that it doesn’t need a parser generator - it is relatively easy to implement Lisp parser. This makes it very portable (implemented in more than 80 languages). The same goes for lis.py - it has an even simpler tokenizer.

Most non-lisp tutorials assume some specific parser generator, which makes them less portable.

Another interesting idea on how to improve this is to make a compiler (“frontend”) which will compile input to a really small subset intermediate representation (for example, Shen needs 46 basic instructions and Haskel Core has 8) then learner can implement compiler or interpreter for the intermediate language.

List of tutorials

Here is my collection of tutorials on how to create a programming language. It's a GitHub repo, so you're welcome to contribute.

Screenshot of github repo

Oldest comments (4)

Collapse
 
ciochetta profile image
Luis Felipe Ciochetta

hey, have you ever heard of this book?

craftinginterpreters.com/

It's a book on how to create a programming language from a guy that works on the dart team

Collapse
 
stereobooster profile image
stereobooster

Hey, yes I'm aware of it. There is a big list of tutorials which I found github.com/stereobooster/write-you.... If you have more good links you can contribute

Collapse
 
ciochetta profile image
Luis Felipe Ciochetta

I've starred your list, I don't know much about creating a programming language, but it will be my next learning project after I finish my DBMS

I have only one more recommendation, it's not quite a tutorial, but a youtube channel > youtube.com/channel/UCo3DTdFQphyjd...

Collapse
 
610yesnolovely profile image
Harvey Thompson

This is a great article with lots of links to helpful places - grateful for all the time you spent compiling (hah) that.

My inspiration book, not well know, that you may be interested in:

amazon.ca/Programming-Languages-Sa...