Welcome to Marlin.

A small programming language oriented at simplicity.

Marlin Docs Downloads

What is Marlin?

Marlin is a simple, compiled, garbage-collected, object-oriented programming language. The goal of the project is to have fun, write good code and build software quickly.


"Hello, world!" in Marlin

Pretty simple.

using std;

module app;

public static class Program {
    public static void Main() {
        std.Console.PrintLine("Hello, world!");
    }
}