Cassette is a small functional programming language. It looks like this: import IO, Net, List ; keeps reading from a connection while there's any data def read_resp(conn) do ; define an iterative loop def loop(received) let chunk = IO.read_chunk(conn, 1024) ; get the next chunk in if #chunk == 0, received ; no more data else loop(received <> chunk) ; concatenate chunk onto received data ; start th