But in Racket, the interpreter does not show the type:
> cadr
#<procedure:cadr>
Is there a way to show the type of a function?
|
feedback
|
|
Racket is an untyped language, so there's no equivalent of this information there. However, if you use Typed Racket, a typed dialect of Racket, you'll get exactly this kind of information:
| |||||||||||||||
feedback
|