haskell: trivial let

This commit is contained in:
Sridhar Ratnakumar 2025-11-05 15:07:49 -05:00
parent a07cd60309
commit ace79ec0bc

View file

@ -34,6 +34,7 @@ Every error case in generated code must be handled properly.
- Use RecordDotSyntax (`value.field`) instead of manually unpacking data types
- Use lenses for record manipulation when appropriate
- Use `Applicative` and `Monad` appropriately
- Avoid trivial `let` bindings when inlining keeps code simple and readable
## Testing