Learning Scheme - atom, list and S-expression
It looks it would be easier to go through The Little Schemer first before pick up SICP, so here we go.
atom
is the most basic building block, it could be a letter, a string of digits, a string of characters. Examples:
a
1492
atom
*abc$
list
is one or …