Programming language progress

It has been over 5 years, and many people would have presumed I had given up on this programming language. This is not true! I have indeed been working on it in the background; however, real life - such as university studies, and then work - had caught up with me, and required my focus.

 

In the future, I aim to continue this blog post on the programming language, as it is interesting. In the meantime, I will mention a few things that I have worked on:

  • Created a custom lexer, which provides nice(r) output for syntax errors
  • Created a custom parser, which provides nice(r) output for semantic errors
  • Working on a formal-ish Hindley-Milner type system, which would make most typing fairly obvious with type inference
  • Working on handling compile-time executed code. The general concept behind this is fairly simple; however, some work needs to be done to ensure that this works correctly (such as the handling of primitives in the language)
  • Working on the standard library. This needs to be built concurrently as the language is built, as the compiler will need to be able to know certain things i.e. some parts of the standard library may need to be native functions

I would like to make future blog posts on certain concepts which I find interesting throughout the process.

 

The following are milestones I wish to accomplish:

  • To be able to write at least some basic programs in the language (such as a calculator)
  • To be able to handle the problems in Advent of Code