Conversation

Not sure but I'm trying to code haskell and im pretty sure I'm stuck on the lack of dependent types 😭 is there always a way to get around it or no?
5
15
Sometimes, with some difficulty, but often not. If you're doing something that reasonably needs them then better use a language more suited for the problem Personally I'm very happy to throw around runtime exceptions as a workaround
1
5
Haskell might fare a bit better than Rust here, and is getting better at it, but languages designed from the ground up to support dependent types can do a bit better at the dependent stuff, at the expense of other things (like compiling to efficient code).