prepend anObject aList
Creates a new list obtained by inserting a new element at the head of an existing list.
define prepend ( anObject aList ) { cons $anObject $aList }