Difference between revisions of "Output/Input"

From HaskellWiki
Jump to navigation Jump to search
(All-new content and category!)
(Content relocated to "IO then abstraction")
Line 1: Line 1:
   
  +
There is currently no text in this page.
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
  +
You can <span style="color:brown;">search for this page title</span> in other pages,
Still, today, over 25 years after the introduction of the concept of monads to the world of functional programming, beginning functional programmers struggle to grasp the concept of monads. This struggle is exemplified by the numerous blog posts about the effort of trying to learn about monads. From our own experience we notice that even at university level, bachelor level students often struggle to comprehend monads and consistently score poorly on monad-related exam questions.
 
  +
<span style="color:brown;">search the related logs</span>,
 
  +
or <span style="color:brown;">log in</span> to create this page.
Considering that the concept of monads is not likely to disappear from the functional programming landscape any time soon, it is vital that we, as the functional programming community, somehow overcome the problems novices encounter when first studying monads.
 
 
<tt>[https://pms.cs.ru.nl/iris-diglib/src/getContent.php?id=2017-Steenvoorden-SupportLearning Visual Support for Learning Monads], Tim Steenvoorden, Jurriën Stutterheim, Erik Barendsen and Rinus Plasmeijer.</tt>
 
</div>
 
 
...so where are students of Haskell most likely to have their first encounter with this irksome interface? Here's a hint:
 
 
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
<code>IO</code> is the monad you cannot avoid.
 
 
<tt>[https://image.slidesharecdn.com/functionalconf2019-whyishaskellsohard2-191116135003/95/why-is-haskell-so-hard-and-how-to-deal-with-it-53-638.jpg Why Haskell is so HARD? (And how to deal with it)]; Saurabh Nanda.</tt>
 
</div>
 
 
If bachelor-level students are often struggling to comprehend the monadic interface, then it has ''no place whatsoever'' in any introductory Haskell course! I/O in Haskell must therefore be totally independent of the monadic interface. The introduction of this interface, including its basic operations, should be deferred to an advanced course of study where it can join functors, applicatives, arrows and maybe even category theory itself: only then should students be introduced to monadic I/O.
 
 
A [https://www.interaction-design.org/literature/article/kiss-keep-it-simple-stupid-a-design-principle simple] general-purpose model of I/O for non-strict functional languages remains an [[Open research problems|open research problem]]...
 
 
[[Category:Rants and comments]]
 

Revision as of 02:48, 2 November 2021

There is currently no text in this page. You can search for this page title in other pages, search the related logs, or log in to create this page.