| ▲ | black_knight 3 hours ago |
| This is where I believe strong typing (like, Haskell-strong or stronger) and functional programming in general will be a win. The confidence I have that my fixes are localised when fixing Haskell code is infinitely stronger than fixing even Java, not speak about C, code. |
|
| ▲ | astrange 3 hours ago | parent | next [-] |
| Haskell's type system would not easily prevent this bug. It's not good at numeric/logic issues like that. When people say "Haskell makes it impossible to write bugs" they mean "Haskell has enums" (ADTs). |
| |
| ▲ | _jackdk_ 2 hours ago | parent | next [-] | | Liquid Haskell might require you to prove that the divisor is nonzero, but even in standard Haskell there's common idioms for ensuring that a list is non-empty (data NonEmpty a = a :| [a]) or that text is non-empty (newtype NonEmptyText = NonEmptyText Text, with non-exported constructor, helpers like make :: Text -> NonEmptyText, or more advanced tricks like https://exploring-better-ways.bellroy.com/haskell-koan-type-... ). The big problem preventing this approach from working for numbers is that it's just so cumbersome there. Most of this is because all the arithmetic operators are bundled into a single Num typeclass, and `fromInteger :: Num a => Integer -> a` has a type that's impossible for a "non-zero number" wrapper to satisfy. | | |
| ▲ | black_knight an hour ago | parent | next [-] | | Definitely room for improvement on Haskell's standard library when it comes to the number-related type classes. Modern Haskell could do very well in this area with a good type-class redesign in this area. The issue I think is that this would invalidate a lot of existing code, relying upon that. But you can already replace Prelude with something else in your own code if you want to. | |
| ▲ | inigyou an hour ago | parent | prev [-] | | OOP has those too, and they're very annoying. | | |
| ▲ | nh2 an hour ago | parent [-] | | In Haskell they are a little less annoying. It is just easier to reason about (including proving) pure functions. | | |
| ▲ | inigyou 36 minutes ago | parent [-] | | I meant the constrained types by hiding the constructors. Super annoying, not automatically convertible, in Haskell you have to remember what the fake constructor is called, and write it every time you use it, but at least it's efficiently implemented with newtype, unlike the Java OOP version. Think about writing a value with several nested constrained types, like NonEmptyListOne (makeNonZeroNumber 42, 'h' `NonEmptyString` "ello world"). It's just really annoying. |
|
|
| |
| ▲ | black_knight 2 hours ago | parent | prev [-] | | I am not claiming you cant write buggy code in Haskell! But following good functional style, your bug will more likely be compartmentalised, and fixing it will not break some other part of your program. | | |
| ▲ | StilesCrisis 22 minutes ago | parent [-] | | You can write good functional code in many languages. (Even C++!) | | |
| ▲ | black_knight 19 minutes ago | parent [-] | | Sure! I have done my fair share of pretending Java and C++ support my functional style. But at the end of the day, you have better support for writing that style in a real functional programming language. And I wonder how well one can enforce a functional style in say Java or C++ upon the LLMs. Who knows, they might be great at it? |
|
|
|
|
| ▲ | theLiminator 3 hours ago | parent | prev | next [-] |
| Imo, formal methods like more expressive/stricter type systems are key to making LLM generated code successful. Of course models will get better, but trusting the output will become much easier with a type system that proves more properties. |
|
| ▲ | UltraSane an hour ago | parent | prev | next [-] |
| Even Lean 4 strong typing |
|
| ▲ | fouronnes3 3 hours ago | parent | prev [-] |
| What's stronger than Haskell? |
| |
| ▲ | black_knight 3 hours ago | parent | next [-] | | Dependent types is one possible direction. Not sure when a language with dependent types will arise which will be useful for making real programs. Agda is the most mature dependently typed programming languae (having been around since the 90s – it is basically Haskell on steroids), but has a more proof-assistant flavor than an actual programming language flavor. Opus & Fable write Agda quite well, so LLMs can understand dependent types. | |
| ▲ | astrange 3 hours ago | parent | prev | next [-] | | Anything with ranged numeric types. Like everyone's favorite functional programming language, Ada. | | |
| ▲ | ghaslt 2 hours ago | parent | next [-] | | This issue raises SIGFPE. Ada would raise Constraint_error, which is easier to catch than a signal, but still occurs at runtime. You need range proofs to be 100% safe, and then you can as well use the regular type because invalid values will not occur. | |
| ▲ | black_knight 2 hours ago | parent | prev [-] | | Or Liquid Haskell. |
| |
| ▲ | TheGoddessInari 2 hours ago | parent | prev | next [-] | | Lean 4, Idris 2. | |
| ▲ | theLiminator 3 hours ago | parent | prev [-] | | Perhaps coq/agda/idris/etc. |
|