Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When were GADTs introduced in GHC?

Tags:

haskell

ghc

gadt

When were GADTs introduced in GHC? (version + date)

Also, are they still considered a language extension or are they now part of the Haskell standard proper?

like image 998
Jon Smark Avatar asked Mar 14 '13 14:03

Jon Smark


1 Answers

GADTs were first supported in ghc-6.4, which was released in March 2005.

They are still a language extension, the latest standard, Haskell2010, has not adopted them (since it was a GHC-only extension, afaik).

like image 83
Daniel Fischer Avatar answered Oct 07 '22 08:10

Daniel Fischer