Learn Haskell
Updated on: Tuesday 6 Jul 2021, 07:39 am
Created on: Tuesday 6 Jul 2021, 07:36 am
Tally23
Likes
My Category: Coding Project
tags: functional programming, haskell
Description
Learn Haskell via Future Learn CourseSummary Notes
Learning Haskell
via free Future Learn Course https://www.futurelearn.com/courses/functional-programming-haskell/9/todo/106941
Progress Record
Spent 1 hour trying to understand below code, but finally got it.
filter pred lst
| null lst = []
| otherwise = if pred x
then x:filter pred xs
else filter pred xs
where x:xs=lst
Progress Record
spent 30 mins trying to understand the code below.
leng :: [a] -> Int
leng [] = 0
leng (x:xs) = 1 + length xs
I understand it now.
Progress Record
spent 20 mins trying to understand some haskell code from the tutorial.
Progress Record
spent 15 mins learning
Progress Record
Spent 1 hour.
Progress Record
Spent 10-15mins week 2 lessons
Progress Record
started week 2 lessons
Progress Record
finished week 1 finally after holiday.
Progress Record
Week 1 lessons 1.1-1.6 complete
Latest ghci installed on machine