|
|
|
|
|
by schrototo
4825 days ago
|
|
Generally this is of course good advice, but in Haskell it is common practice to use very short names (e.g. x, x', xs, ...) if the context is clear (which it usually is due to small scope, clear function names, type signature, etc.). This makes code much more concise and readable (it also makes it look very "mathematical"). |
|
Has that ever been an advantage?