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