Article notes
What refers to elementary data types that are basic, indivisible building blocks in any programming language?
Atomic data
What can you prefix an unbound identifier with to prevent it from being evaluated in Racket?
An apostrophe (')
Example:
'alpha
What is the primary non-atomic data structure in Racket?
The list
What is the syntax for a list with some numbers in Racket?
(list 1 2 3)
According to the Racket book, a list is a special case of something called a what?
An s-expression