car | non-empty list | the first S-expression of the list |
cdr | non-empty list | (could-er) the list of S-expression that aren't the car |
cons | a l | cons a into l |
define | name value | give name to value |
lambda | arg body | create procedure |
cond | questions | list of questions to answer |
else | instruction | one of the questions |
eq? | a1 a2 | #t when a1 = a2 |
null? | l | #t when empty list |
atom? | a | #t when atom |
number? | a | #t when number |