Matchbox

Matchbox is a general-purpose programming language. The language has easy-to-learn syntax, is memory-safe, and runs on any platform that supports Matchbox.

Download Matchbox 0.1.4

Supported Platforms

Matchbox can run on the following platforms:

  • Windows

Getting Started

First, create a file named main.mb and add the following code:

var x = 10
var y = 20
var z = x + y

Next, compile and run the program:

matchbox main.mb