Jam mascot

Jam Programming Language

High performance, ergonomic and safe.

Jam 1.0 is under development

Write once.
Deploy everywhere.
From CPUs to GPUs.

High performance, ergonomic and safe.

$ jam run hello.jam Copied!
hello.jam
const std = import("std");

// Simplicity at its core
fn main() u8 {
    std.fmt.println("Hello, World!");

    for i in 0:5 {
        std.fmt.println("Spreading jam...");
        std.thread.sleep(100);
    }

    return 0;
}