You Should Learn This Programming Language
2 min readMay 23, 2022
Welcome back! Programming is one of the best skillsets to have nowadays, so, let’s take a look at another programming language that you should definitely check out, this language is called Jakt, and it’s a memory safe language that transpiles to C++! Here is a link to their GitHub repository if you want to learn more about it:
These are the current goals of this specific language:
The repository goes in quite a bit of detail about these foals in details, but for the purpose of this article, let’s take a look at some of the basic syntax of this language:
struct Point {
x: i64
y: i64
}
Here is another sample command:
let a = Point(x: 10, y: 5)
let b = a
// "b" is a deep copy of "a", they do not refer to the same Point
The following example creates an dictionary:
function main() {…