| Back to TeachScheme! workshop | Back to Recipes |
Functions are analogous to verbs in human languages: they represent
actions that happen at a particular time.
For example, the built-in +
function takes in two or more numbers, adds them up, and returns the
resulting number; the (user-defined) cube function takes in
one number, computes its third power, and returns that. Functions
generally accept parameters when they are called and return results.
Data types are more like improper nouns in human languages: they represent a kind of thing. In English, "computer", "student", "dog", "banana", and "program" are kinds of things. In most computer programming languages, there are built-in types like "number", "boolean", "symbol", and "string", while you can define others like "circle", "rectangle", "shape", etc. A data type is not "called" or "invoked" at any particular time on any particular parameters, and it doesn't return a result.
Many programming tasks require inventing both a new data type and a new function (or even several of each). Just deal with them one at a time.
| Creating a function | Creating a data type |
|---|---|
Analysis & DesignCodingCode ReviewTesting & Debugging |
Describe the new data type in English. At this point, most of the new
data type definitions you've seen are "by parts": an object of the new type
"contains one of these, and one of those,
and one of the others.
For example, a
|