Difference between revisions of "Category:Style"

From HaskellWiki
Jump to navigation Jump to search
m
m (Added link to Simple Haskell Initiative)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
Programming is not only a question of "works" and "does not work", but also a question of style.
 
Programming is not only a question of "works" and "does not work", but also a question of style.
Remind that programs are written once, then altered and read many times.
+
Remember that programs are written once, then altered and read many times.
Because of this, saving keystrokes when typing code is not so important like assistance for understanding and for modifications.
+
Because of this, saving keystrokes when typing code is not so important compared to assistance for understanding and for modifications.
  +
  +
=== See also ===
  +
  +
* [https://www.simplehaskell.org Simple Haskell]
  +
  +
[[Category:Haskell]]

Latest revision as of 01:13, 5 August 2021

Programming is not only a question of "works" and "does not work", but also a question of style. Remember that programs are written once, then altered and read many times. Because of this, saving keystrokes when typing code is not so important compared to assistance for understanding and for modifications.

See also