Functional Problem Solving (CSC 151 2015S) : EBoards

CSC151.01 2015S, Class 06: Writing Your Own Procedures


Overview

Preliminaries (Postliminaries?)

Admin

Upcoming Work

Extra Credit Opportunities

Academic

Peer Support (Morning Section)

Recommended Events (no EC unless mentioned above)

Questions

Notes from Lab

Vocabulary

Indenting

Syntax/Grammar

Schemers read

(lambda (val lower upper) (min upper (max val lower)))

as

A function [that's the lambda]

With three parameters [that's the (val lower upper)]

In which are algorithm is ... [that's the (min upper ...)]