Hacker News new | ask | show | jobs
by saithound 221 days ago
This is not a real language, it's pure LLM slop.

Just look at the so-called sort example from the repo:

    def sort(list: List(T)): List(T) where Ord(T) =
        match list do
            [] -> []
            [pivot | rest] -> sort(rest)
        end
1 comments

that will achieve incredible performance on the right array
It only works correctly on an empty array, on which any sorting algorithm is fast.