Help me answer the following question appears in Simply Scheme
6.7 Write a procedure type-of that takes anything as its argument and returns one of the words word, sentence, number, or boolean:
> (type-of '(getting better))
SENTENCE
> (type-of 'revolution)
WORD
> (type-of (= 3 3))
BOOLEAN
(Even though numbers are words, your procedure should return number if its argument is a number.)