A Friendly, Practical Programming Language

Jock is a subject-oriented statically-typed functional programming language that compiles to Nock and runs on any Nock VM.

curl -fsSL https://jock.org/install.sh | sh

Nock just got easy.

example.jock
// Create a simple "Hello, World!" program
let message: @t = "Hello, World!";

// Define a function that returns a greeting
fn greet(name: @t) -> @t {
  "Hello, " + name + "!"
}

// Demonstrate a conditional statement
let a: @ = 3;
if a == 3 {
  72
} else if a == 5 {
  17
} else {
  15
}