Jade

A minimal, high-level, fast and simple programming language.

What is Jade?

Jade is a transpiled, raw and fast programming language. it transpiles in C++ for maximum speed via a Java regex to grant the "WORA" (write once, run anywhere). The main rule is "Every statement starts with a keyword or a key operator". Thos makes the coding way easier amd, sometimes, more verbose.


! this is a simple "Hello world" #
import /sys/io
start {
  println "Hello world!"
  ret 0
}