Live data from Hacker News

The Flix Programming Language

flix.dev

1–10 of 126 posts

Re: The Flix Programming Language

#7

Woah, the effect system looks really neat at first glance. Also, “region-based local mutation” so your pure functions can use mutation under the hood for performance? Sweet!

I'd like to see an experimental language that leans hard into the concept of controlled mutation.

I always say that purely in terms of design my ideal language is high-level Haskell, low-level C. Conceptually, purely functional design is how programming "should" (note the quotes) be, but doing so down to the level of functions is both not very practical (some algorithms are just easier to express in terms pointers moving around rather than folds, reduces and the like), and makes it hard to reason about performance (especially memory, and most especially if you throw laziness in the mix).

But then again, I write my own stuff in python because I'm a lazy fuck, so probably it's not meant to be :(

Re: The Flix Programming Language

#8
This looks interesting with lots of feature packed. Looks like a promising language.

One thing not clear is what's the reference vs value model, lifetime, and mutable vs immutable model.

Re: The Flix Programming Language

#10

do functional languages mainly appeal to computer language enthusiasts/researchers? im just not seeing the benefit personally.

Do you worry about side-effects that leak beyond the scope of the routines you're authoring? Why / why not?

i do, does functional programming make this a non issue? maybe im just not smart enough to wrap my head around it.
Post reply on HN