Top 1,000 Features Creators Events Podcasts Extensions Interviews Blog Explorer CSV

Jakt

< >

Jakt is a programming language created in 2022 by Andreas Kling.

#365on PLDB 2Years Old
Download source code:
git clone https://github.com/SerenityOS/jakt
Source Code

Jakt is a memory-safe systems programming language. It currently transpiles to C++.


Example from the web:
function main() { let x = ("a", 2, true) println("{}", x.1) }
Example from Compiler Explorer:
function square(num: i32) -> i32 { return num * num } function main() { return square(num: 3) }
Example from hello-world:
function main() { println("Hello World") }

Language features

Feature Supported Example Token
Strings ✓
"Hello world"
"
Print() Debugging ✓ println

View source

- Build the next great programming language · About · Resources · Acknowledgements · Part of the World Wide Scroll