Comment by keithasaurus
10 hours ago
No, blorp doesn't use affine types (one or zero uses). In blorp, ownership is not explicitly controlled by users at all, so it's opaque. Under the hood, it's perceus for compile-time ownership and borrowing and automatic reference counting with copy-on-write optimizations for the runtime. This is made reasonably easy for the compiler to reason about in blorp because semantically it doesn't _really_ have in-place mutation -- `var` really means "re-bindable" to a new value; and then under the hood we'll mutate in place where we can.
Interesting.
How do you prevent data races in concurrent code?
Or do you not allow shared mutable memory?
Yeah, no shared mutable memory; coordination is done via channels.