I'm reading a old book
Simply Scheme: Introducing Computer Science
you can find it here .
In the fifth section it introduces the "selectors", operators like the following:
(first 'abcd) ;-> A
(butfirst 'abcd) ;-> BCD
and so on..
Does it exist something similar in R6RS? (since this operators are not defined).