Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Jakt

< >

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

#339on 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

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0