But in Racket, the interpreter does not show the type:

> cadr
#<procedure:cadr>

Is there a way to show the type of a function?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 8 down vote accepted

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:

-> string-append
- : (String * -> String)
#<procedure:string-append>
link|improve this answer
2  
More specifically, OCaml is statically-typed, while Racket is dynamically-typed – newacct Feb 15 at 22:25
@newacct, I don't like the term dynamically typed -- I don't think it really means anything the way people use it. I'll stick with my statement that Racket is untyped, which is not intended as a criticism of Racket (I'm one of the developers of Racket), but as a simple descriptive statement. – Sam Tobin-Hochstadt Feb 15 at 23:04
Like it or not, but dynamically/statically typed languages are differ from untyped. For example, in untyped awk you can easiy concatenate strings and numbers while in dynamically scheme/racket you'll get runtime error. – paul Feb 16 at 6:25
@paul Perhaps the distinction you're trying to make is between a "safe"/"unsafe" axis of categorization and a "static"/"dynamic" axis of categorization. If so, fair enough. All these terms are disputed, though, often by people who've spent a lot of time thinking about them. – Lindsey Kuper Feb 16 at 7:20
1  
@paul The behavior of operations like (+ 3 "hi") is entirely about the meaning of the + operation, and has nothing to do with types. You can easily create a type system that allows this behavior, and give it an appropriate result type. – Sam Tobin-Hochstadt Feb 16 at 12:26
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.