top | item 43437752

The Jakt Programming Language

108 points| gw2 | 11 months ago |github.com

48 comments

order

quux|11 months ago

I've done some hobby programming[1] in Jakt and while it had promise and took good ideas from other modern languages my understanding is that it's been abandoned at this point and isn't mature enough to build anything non-trivial.

Transpiling to C++ for maximum interop with the SerenityOS codebase was an interesting idea too, but what it meant was you had to interpret C++ compiler errors to to understand what was breaking a lot of the time

1: Here's my admittedly crappy markdown->HTML converter written in Jakt https://github.com/mikeakers/r3gen

alec3660|11 months ago

It's always nice to see others programming in Jakt. I've written a couple of network device drivers (rtl8139, virtio-net) and a TCP/IP stack in Jakt that is used in my TempleOS fediverse server project[1].

I also contributed some patches to Sophia's jaktnesmonster NES emulator a few years back, adding support for some popular mappers, as well as a TempleOS port, and more recently wired everything up[2][3] to use Serenity's native libraries (LibGUI, LibAudio, etc.)

1: https://github.com/slon-project/slon

2: https://files.catbox.moe/jq656f.webm

3: https://github.com/alec3660/jaktnesmonster

losvedir|11 months ago

I was pretty excited about this, but didn't the Serenity browser recently announce they're going with Swift? That kind of takes the wind out of this language's sails.

quux|11 months ago

Yeah they've chosen Swift as their C++ successor language for Ladybird (the browser project forked from SerenityOS's browser)

Some work to do with making Swift work with ladybird's garbage collection but my understanding that this work is in progress.

Andreas talks about it here: https://www.youtube.com/watch?v=z1Eq0xlVs3g&t=759s

nukem222|11 months ago

Hell of a decision.

SalmoShalazar|11 months ago

It seems like Andreas abandoned SerenityOS and Jakt with it, and moved on to Ladybird. The language died with this move. The project was always very clearly “for fun” so I don’t see any harm or foul here. I also got the sense that there was a falling out between Andreas and some members of the community, like JT and one of the major JavaScript engine contributors whose name I can’t recall right now. Or maybe it was just that the passion for this particular project dried up.

e3bc54b2|11 months ago

I was never active in SerenityOS and only watched things from afar, but JT had a transition and I got the sense that the other contributor just got busy with life. That said, SerenityOS was a 'for us by us' mostly fun project that became too big and collapsed under its own weight without Andreas. Andreas is a great programmer and seems like genuinely nice person, but over time he was becoming more of a programmer influencer and since seems to have transitioned to PM/EM with full-time Ladybird. I miss his videos, they taught me I never want to write C++ and that splitting a giant work in tiny changes works and that programming videos are tiktok for programmers.

Which is to say, falling out with Andreas IMO is less than likely, dude just seems nice from the onset, but with changing tides in project it is highly likely that people just became uninterested over time.

ii41|11 months ago

I'm shocked by that they took the class/struct differentiation from swift. I HATED it when I had to deal with it in the past when working with swift. What's wrong with letting the programmer take the reference whenever they want to? Why do I have to change the whole class when I find something that makes me think it's better to have it passed by value? Why do I have to deal with the complexity of 2 kinds of custom types, with all the existing delicacies of a modern type system? Why on the earth would someone think this is a good idea that is worth taking? Can someone educate me on this?

pjmlp|11 months ago

The class/struct differentiation predates Swift by a few decades, it has come up in many other languages.

Contrary to Go folks, Swift designers have done their work why some approaches are better than others based on historical use of language features.

quux|11 months ago

My feeling is that if Swift didn't have the requirement of very tight interop with Objective-C there would have only been one kind of object. Maybe just structs with the option of heap allocation/reference counting or something like that.

But that's not the world Swift was born into and so it has both classes that are optionally Obj-C compatible and structs

delifue|11 months ago

Not allowing take reference can avoid interior pointer. Interior pointers make memory safety harder and also make GC harder.

chubot|11 months ago

As mentioned in another reply, being able to take the address of any value implies supporting interior pointers (pointers into the middle of a value)

This is hard to implement in a memory-safe language. For example, the new WASM GC virtual machine does not support interior pointers.

I noticed this distinction recently, regarding the rewrite of TypeScript in Go:

https://lobste.rs/s/3q0ei5/10x_faster_typescript#c_xndrsg

- C#, Swift, Julia, Nim, Crystal, and very recently OCaml have separate value types and reference types. The choice is not orthogonal, which is what you don't like. (Java, Python, etc. do not have value types at all)

- Only Go and D have the memory model of C (values and references), with GC.

- Rust has also has the model of C, but with "static memory management"

hu3|11 months ago

> Jakt is a memory-safe systems programming language.

Sounds pleasant and safe to use. I wonder if they plan to use it on their Ladybird browser.

From their readme:

Automatic reference counting

Strong typing

Bounds checking

No raw pointers in safe mode

Null pointers are not possible in safe mode, but pointers can be wrapped in Optional, i.e Optional<T> or T? for short.

Integer overflow (both signed and unsigned) is a runtime error.

Numeric values are not automatically coerced to int. All casts must be explicit.

and more.

calgarymicro|11 months ago

Ladybird is no longer part of the SerenityOS project, and Jakt seems pretty dormant; my understanding is that Ladybird is moving to Swift as an eventual C++ replacement.

Sphax|11 months ago

I watched some videos of Andreas working on Jakt some years ago but right now it seems kind of dead looking at the commit history.

mllev|11 months ago

It’s pronounced “y-ah-kt”. I’d probably use it if it was pronounced “jacked”.

cupofjoakim|11 months ago

Seems pretty popular already, but I have missed this. What's the USP of Jakt over something like native c++, rust or zig? I don't really see the need, would love to hear from someone who knows

quux|11 months ago

I think Andreas and JT wanted something that would tightly integrate/interop with the large existing C++ SerenityOS codebase. I think they also welcomed the opportunity to build a new language, consistent with the SerenityOS ethos of building every part of their OS themselves.

fifilura|11 months ago

Jakt is the Swedish (and Norwegian) word for hunt.

Deerhunt = Hjortjakt

Boar hunt = vildsvinsjakt

And the most common and revered...

Moose hunt = älgjakt

tored|11 months ago

Bugjakt

cloudhan|11 months ago

> The official project language is American English with ISO 8601 dates and metric units.

Very good taste for an American.

Alifatisk|11 months ago

> Jakt is a memory-safe systems programming language

> It currently transpiles to C++

So C++ being safe was possible after all

zamalek|11 months ago

C++ is merely behaving as a intermediate language/representation in this case. They are compiling to subset of it. Idiomatic C++ is not safe.

pirgidb|11 months ago

And after that it's compiled to assembly, so I suppose safe assembly was possible after all.

zesterer|11 months ago

Every new programming language is just Rust but worse and it hurts me

idispatch|11 months ago

Sooner or later there will inevitably appear a new language, or an evolution of the current Rust, which will be significantly better than Rust and not just a minor tweak to the language we know today . Let’s say it is named Rust++ (any resemblance to existing languages is a pure coincidence). And the whole hype and rewrite starts over again… it is just a matter of time.

zamalek|11 months ago

It started looking like "Rust but without lifetimes."

Then I noticed structured exception handling. Oh well.

ysofunny|11 months ago

also, all programming languages if/when given enough time adopt all features from all other languages

this is applicable to web-era languages circa the times of PHP thru Java.

vjerancrnjak|11 months ago

I don’t know. There’s trade offs everywhere. Rust std file interface is ugly and meh. Intermediate buffers everywhere.

Async await and unwrap is ugly.

Lambdas and binding of locals is very ugly as well. Any fake lifetime errors I get are solved by a data type and impl which is just confusing, as if lambdas are a problem.