GHC 7.8.1 released
haskell.org
GHC 7.8.1 released
1–10 of 103 posts
Re: GHC 7.8.1 released
#2Re: GHC 7.8.1 released
#3I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?
[0]: https://ghc.haskell.org/trac/ghc/wiki/Building/CrossCompilin...
Re: GHC 7.8.1 released
#4I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?
Re: GHC 7.8.1 released
#5Re: GHC 7.8.1 released
#6I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?
Re: GHC 7.8.1 released
#7I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?
Re: GHC 7.8.1 released
#8Is GHCJS easy to install now? I'm very excited about that.
Re: GHC 7.8.1 released
#9This extension allows programmers to use the list notation for construction of structures like: Set, Map, IntMap, Vector, Text and Array. The following code listing gives a few examples:
['0' .. '9'] :: Set Char
[1 .. 10] :: Vector Int
[("default",0), (k1,v1)] :: Map String Int
['a' .. 'z'] :: Text
http://www.haskell.org/ghc/docs/7.8.1/html/users_guide/type-...