Introduction to the course

This course

Self study

Getting help

  1. Course homepage
    • It should be comprehensive -- complain if it is not!
  2. Discussion board
    • Discuss general topics, find lab partner, etc.
    • Don't post (partial or complete) lab solutions
  3. Office hours
  4. Send e-mails to teachers (myself and the assistants)
    • Organizational help, lectures, etc. (Lecturer)
    • Specific help with programming labs (Assistants)

Organization

Recalling Haskell

Functions vs. Actions

Programming with IO

code

Referential transparency

Referential transparency in practice

Evaluation orders

Observing evaluations in Haskell

Lazy evaluation: skipping unnecessary computations

Lazy evaluation: programming style

Lazy evaluation: when is a value "needed"?

Lazy evaluation: at most once?

ff :: Integer -> Integer
ff x = (x - 2) * 10

foo :: Integer -> Integer
foo x = ff x + ff x

bar :: Integer -> Integer -> Integer
bar x y = ff 17 + x + y

testBar = bar 1 2 + bar 3 4

Lazy evaluation: infinite lists

Lazy evaluation: infinite lists exercises

Lazy evaluation: infinite data structures

Lazy evaluation: conclusions

Lazy evaluation
Avoids unnecessary computations (a different programming style).
Provides error recovery.
Allows to describe infinity data structures.
Can make programs more modular.
Makes complexity analysis hard.
Is not suitable for time-critical operations.

Type classes

code

Focus of this course

Typical embedded language