Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

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


that will achieve incredible performance on the right array


It only works correctly on an empty array, on which any sorting algorithm is fast.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: