Matchbox

Matchbox is a fast and portable programming language that is memory-safe and has expressive, easy-to-learn syntax.

Download Matchbox

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 result = x + y

print(result)

Next, compile and run the program:

matchbox main.mb