DEV Community

Cover image for MSN2: An Experimental Programming Language for the Bold Developer
masonmarker
masonmarker

Posted on

MSN2: An Experimental Programming Language for the Bold Developer

Beginnings

A few years ago, after tossing 2 draft languages, I began my personal project pinnacle. MSN2 was (and still is) what I consider to be a mock programming language, mostly due to its unconventional, deoptimized interpretation methods that can result in language integrity issues.

But then again I ask myself, why would I keep coming back to this project over the years? Why hadn't I tossed it with the other drafts in fear of developers embarrassment? I kept it because of how far I exceeded my expectations for a programming language having a single contributor, even though I'm still miles short of the vision I have.

Why another language?

Early in development, there was no real intention to release it to the public as it was merely a learning exercise, thus there's no real reason to introduce a new language. Regardless, as a functional tool and a main source of my Python studies, the benefits of building a programming language on top of Python equips us with the not only the complete capabilities of Python itself, but new features for:

  • multiprogramming
  • syntax additions
  • automation (win 10 exclusive)
  • multilingual (as of 2.0.403, Python, JavaScript, Java, C)
  • MSN2 -> JavaScript/React transpilation
  • API endpoint creation and interactions
  • Simple, lightweight containers

Because of the ease of implementing new features, it could serve as the foundation for a more community-oriented language that continuously progresses through community feedback and contributions. With these the current and future contributions, we create opportunity to:

  • Innovate programming strategies
  • Foster cross-language interoperability
  • Support flexible and customizable syntax
  • Provide pre-built utilities for natural language processing (NLP)
  • Facilitate the creation of custom libraries and plugins
  • Adapt to a wider range of development environments

and how much more...?


Capabilities

It's easy to say the language is very capable, and in certain situations, I'd argue it's more capable with less code. It’s also becoming more and more enjoyable to use as a developer as updates are released. Unfortunately its not as easy to say using the language is a cakewalk. I've released an msn2 syntax highlighting extension for VSCode, basic documentation, and many tutorials and code examples. Though it becomes difficult without auto-completion of keywords or tokens and understanding implications when writing code certain ways. These issues are addressed in the issues tab of the MSN2 repository.

Complete, Runnable Examples

(None of these examples have extra code out of frame)

  1. simplifying simple operations
    msn2-example-0

  2. starting an API endpoint and querying
    msn2-example-1

  3. creating a personalized macro
    msn-example-2

  4. running inline JavaScript (also possible with Java and C)

msn2-example-3

  1. These examples hardly scratch the surface of MSN2, find many much much larger projects and demonstrations in the MSN2 repository

Larger Project Examples


Drawbacks

The above sounds great! I'm entirely invested in making the steps to build on what I've created. But as much as I wish there weren't issues in such a large, overly complex, maintenance-demanding codebase, there are XD.

Integrity

As of MSN2 2.0.403, there are several, fixable integrity issues potentially producing incorrect results at runtime. Luckily integrity issues are temporary, but its important they're addressed quickly.

Speed

With Python as a backend, speed becomes a brutal drawback, and that's speed. Speed will always be an issue with MSN2, and unfortunately we can only make attempts to make the base language match a speed close to Python's own.

So what can we do?

  • We can offer a polyglottal approach - While we manage a slower, overhead process, this process can offer ease of launching programs in languages that are faster. MSN2 GitHub - See Multilingual Implementations
  • We can make it worth it - With Python maintaining the larger backend, MSN2 is given a unique opportunity to explore what's functionally possible from the developers side when having an extensive and flexible set of built-in integrations across languages and environments. This enables developers to more effectively coordinate extensive data pipelines, automation workflows, and large-scale systems, potentially making it easier to manage and scale projects that rely on Python’s boundless, production ready capabilities.
  • We can optimize - There are plenty of points of deoptimization during interpretation, this would be an initial source of major speed gain.
  • We can accept it - Base MSN2 will never be used for speed-dependent applications, such as those in data science, real-time analytics, high-frequency trading, and plenty of other fields. MSN2 would be used primarily for customizable program orchestration, using highly generalized functions quickly and seamlessly, allowing developers to create powerful workflows that connect various programming languages and tools. This flexibility makes it an ideal choice for managing complex, multi-language projects and automating diverse tasks without the need to switch environments or write extensive Python.

Wrapping Up

This project has been an ambitious journey, what started as a learning exercise quickly grew into a playground for exploring language design and new, creative proof of concepts. MSN2 has serves as a learning experience that continuously challenges my programming capabilities. It's far from acceptable, and much farther than perfect, but that's part of what makes it exciting - it's full of opportunities to grow and improve.

While the majority of the language is not entirely production ready, and testing hasn't reached 100% coverage, MSN2 represents the potential of unconventional thinking and freedom to experiment without the pressure of perfection. Whether it becomes a useful tool in projects or remains a personal endeavor is up to myself and the community, but its future depends on continued development, feedback and refinement. For now, I see it as a stepping stone, one with rough edges and plenty of cracks, but still solid enough to stand on.

helpful links
MSN2 on GitHub
MSN2[2.0.401] documentation
my website / portfolio

The banner of this post is unformatted, yet runnable MSN2 code incorporating inline mixes of JavaScript, Java, C, all interacting with an API endpoint spun up in the same line.

Top comments (0)