From 94bba82e498c33a6d405a0e858f9e074fd9eb7ea Mon Sep 17 00:00:00 2001 From: Boyan Date: Sun, 23 Mar 2025 18:18:38 +0100 Subject: [PATCH] a --- haskell/sessions/23_03/notes.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 haskell/sessions/23_03/notes.md diff --git a/haskell/sessions/23_03/notes.md b/haskell/sessions/23_03/notes.md new file mode 100644 index 0000000..a466212 --- /dev/null +++ b/haskell/sessions/23_03/notes.md @@ -0,0 +1,17 @@ + +## Lists + +```hs +------------ !! mapAccumL +mapAccumL :: (s -> a -> (s, b)) -> s -> [a] -> (s, [b]) +------------ +``` + + +> Generics in C? + +> Implement Haskell lists in Python + +> Forall and exists in functional programming + +https://hackage.haskell.org/package/base-4.3.1.0/docs/src/Data-List.html \ No newline at end of file