Live data from Hacker News

GHC 7.8.1 released

haskell.org

1–10 of 103 posts

Re: GHC 7.8.1 released

#4
post #2

I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?

"In particular, GHC now has all the necessary patches to support cross compilation to Apple iOS, using the LLVM backend."

Re: GHC 7.8.1 released

#6
post #2

I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?

Yes - you can now compile Haskell code to run on iOS. There are still a few unusual steps that involve ffi but its pretty easy to get a trivial project up and running. I have an unfinished project that shows the process. https://github.com/schell/blocks

Re: GHC 7.8.1 released

#7
post #2

I'm intrigued by "full iOS support." Does this mean it's now possible to write iOS apps using a Haskell backend?

Yes. Everything but certain naive use of template Haskell or use of ghci is supported for targeting IOS. There's also some related engineering to provide android support

Re: GHC 7.8.1 released

#9
[..] http://www.haskell.org/ghc/docs/7.8.1/html/users_guide/type-... [..]

This 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-...

Post reply on HN