Skip to content

jank-lang/jank

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e39a282 · Mar 28, 2025
Mar 21, 2025
Mar 5, 2025
Feb 24, 2025
Mar 28, 2025
May 27, 2024
Feb 24, 2025
May 25, 2024
Nov 13, 2020
Feb 2, 2024
Mar 13, 2025
Mar 19, 2025
Mar 25, 2025
Mar 20, 2025
Jan 31, 2025
Sep 20, 2022
Jan 15, 2024
Jan 28, 2025
Aug 23, 2022
Mar 28, 2025
Nov 3, 2024
Jan 11, 2025
Mar 19, 2025
Nov 28, 2024
jank banner

CI

What is jank?

Most simply, jank is a Clojure dialect on LLVM with C++ interop. Less simply, jank is a general-purpose programming language which embraces the interactive, functional, value-oriented nature of Clojure and the desire for the native runtime and performance of C++. jank aims to be strongly compatible with Clojure. While Clojure's default host is the JVM and its interop is with Java, jank's host is LLVM and its interop is with C++.

For the current progress of jank and its usability, see the tables here: https://jank-lang.org/progress/

The current tl;dr for jank's usability is: still getting there, but not ready for use yet. Check back in a few months!

Docs

Appetizer

; Comments begin with a ;
(println "meow") ; => nil

; All built-in data structures are persistent and immutable.
(def george {:name "George Clooney"}) ; => #'user/george

; Though all data is immutable by default, side effects are adhoc.
(defn say-hi [who]
  (println (str "Hi " (:name who) "!"))
  (assoc who :greeted? true))

; Doesn't change george.
(say-hi george) ; => {:name "George Clooney"
                ;     :greeted? true}

; Many core functions for working with immutable data.
(apply + (distinct [12 8 12 16 8 6])) ; => 42

; Interop with C++ can happen *seamlessly*.
(defn sleep [ms]
  (let [duration (c++/std.chrono.milliseconds ms)]
    (c++/std.this_thread.sleep_for duration)))

Sponsors

If you'd like your name, company, or logo here, you can sponsor this project for at least $25/m.


Misha Karpenko

Bert Muthalaly

modulr-software

In the news