Which dependently typed programming languages could be used for real world application development?

These are some points, that I think are important:

  • documentation
  • example programs
  • a standard library
  • or at least an easy to use foreign function interface
  • a community of people using the language for real world tasks
  • tool support
link|improve this question

80% accept rate
Might be a better fit for programmers.stackexchange.com... – ChristopheD Jan 8 '11 at 14:26
Any of them could be used. You need to provide more context for your question. – jzd Jan 8 '11 at 14:44
What about Turing completeness? Is that a requirement too? Also when you say "real world tasks", you mean "developing applications" - not "proving theorems", right? – sepp2k Jan 8 '11 at 14:48
@jzd: what kind of "context" should i provide? – Kim Stebel Jan 8 '11 at 20:25
@sepp2k: my question contains the words "application development". ;) – Kim Stebel Jan 8 '11 at 20:26
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

I would suggest Agda, because it has calling compatibility with Haskell. As such, it's probably the dependently typed language with the best libraries. Documentation and tutorials are a bit lackluster though, and tool support isn't too great either. To be honest, most dependently typed languages aren't very fully developed at the moment.

If you instead went with the slightly weaker demand that your language should have GADT's, there are two very well maintained options: Scala and Haskell. IMHO you get most of the benefits of dependent types by using GADT's, and you keep typechecking decidable to boot.

Scala and Haskell both have large and well documented libraries, a working tool chain, as well as FFI's (to Java and C respectively). Both also have communities using them to solve real-world problems, like parsing and web development.

link|improve this answer
I've been using scala for a while, but I haven't used GADTs. How do they relate to dependent types? – Kim Stebel Mar 29 '11 at 15:41
GADT's are a useful intermediate step between dependent types and regular parametric types. You get stronger typing than in most type systems, and stop short of having a type system that is turing complete(undecidable) like dependent typing.Having an undecidable type system is a bit problematic because type-checking has a small chance to loop indefinitely. So unless you know that you will need the extra type info from dependent typing you may be better off stopping at GADT's. Because they allow you to do cooler things than most type systems while still being decidable. – voxcogitatio Mar 29 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

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