===== Racket Functions == ==== cons == Creates a newly allocated pair. (cons ) === car == Returns the first value of a pair created with ''cons''. (car ) ==== cdr == Returns the second value of a pair created with ''cons''. (cdr ) ==== cond == It's somewhat like a switch statement in other languages: (cond ( ) ( )... ()) ==== string-append == Appends strings. Arguments *must* be strings already. (string-append ...) ==== number->string == Converts a number to a string. (number->string )