I'm making a program in the plai-typed language, however I want to use the functions 'car' and 'cdr'
(require (typed-in racket
(car : (pair -> any/c))
(cdr : (pair -> any/c))))
However it gives me the error pair:bad type
Why is this? What 'type' should I fill in instead of 'pair' since in the documentation it says that the input for both function is a pair.
I tried typing 'Pair' 'pair' 'Pairs' 'pairs' however none work