12.07.2015 Views

CSCE 314 Programming Languages - TAMU Computer Science ...

CSCE 314 Programming Languages - TAMU Computer Science ...

CSCE 314 Programming Languages - TAMU Computer Science ...

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Exercises(1) Without looking at the standard prelude,define the following library functions usingrecursion: Decide if all logical values in a list aretrue:and :: [Bool] → Booland [] = Trueand (b:bs) = b && and bs Concatenate a list of lists:concat :: [[a]] → [a]concat [] = []concat (xs:xss) = xs ++ concat xss48

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!