Comment by wavemode

4 hours ago

> No garbage collector

> Slots are stable for the life of the process; the heap grows with distinct content only.

So how is a program supposed to handle lots of unique content? Like a web server handling user requests?

Taking it at face value, you'd spawn a subprocess to handle each web request and exit once it's done.