5 ms·
Haskell Platform 2012.2.0.0 released - includes GHC 7.4.1
- currywurst 14y agoI'm still tippy-toeing in the Haskell waters .. but the availability of seemingly mature "elbow-grease" tools like profilers, debuggers and code coverage evaluators is what attracts me to Haskell. What is the state of the art for the new kids on the block like Clojure, Scala and Go ?
- njs12345 14y agoRelease notes here: http://www.haskell.org/ghc/docs/7.4.1/html/users_guide/release-7-4-1.html http://www.haskell.org/ghc/docs/7.4.1/html/users_guide/relea... Some good stuff in this release --- preliminary ARM support is exciting for obvious reasons, and the new kinds flags are fun if you like that sort of thing (see http://blog.omega-prime.co.uk/?p=127 http://blog.omega-prime.co.uk/?p=127 for some examples)
- aristidb 14y agoThose are actually the release notes for GHC (the "standard" Haskell compiler) itself, which is shipped as part of the platform, but is not it. The platform is basically a bundle of GHC, cabal and some other build tools, and some "sanctioned" Haskell libraries.
- gatlin 14y agoLinks on the website need to be updated.
- MtnViewMark 14y agoIf you mean the Haskell Platform site, try refreshing in your browser.
- tferris 14y agoAnyone using Haskell and why?
- pjmlp 14y agohttp://www.haskell.org/haskellwiki/Haskell_in_industry http://www.haskell.org/haskellwiki/Haskell_in_industry
- Peaker 14y agoI'm using Haskell because I'm more productive in it than in any other language. The code is elegant and concise, and is of high quality. When I want to make sweeping changes, I can trust the compiler to remind me everything that needs to be fixed. I barely have to test anything, because if it compiles, more than 90% of the time, it will Just Work. When I do test, Haskell makes testing far easier, with packages like QuickCheck and its rich types. I don't write performance intensive code, but when I wrote this kind of code in Python, I still had to battle with performance problems a lot. In Haskell, performance is great out of the box and I rarely have to deal with that. Haskell gives me useful guarantees that make mechanical refactorings so much easier, leading to more code quality. Haskell is lazy allowing me to write more modular code, and enabling a lot of useful techniques (See [1]). Haskell gives me access to state of the art techniques in various fields (accelerate, safe transactional memory, nested data parallelism, vector and list fusion, ...). Haskell expands my mind, and makes me understand code and computation more deeply. There are so many reasons to use Haskell... There are a few reasons not to use Haskell, but the most major one, in my opinion, is the initial difficulty of learning it. Overcoming that difficulty is well worth it for career programmers, in my opinion. [1] http://www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pdf http://www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pd...
- ufo 14y agoIf you dont know anything about haskell (orat leastanother similar language). Then do yorself a favour and go learn more about it :) If you already know what haskell is about, id say its killer feature is the rich type system. Not only is it very complete (including support for generics, overloading and much more) but the ecosystem as a whole is oriented towards static safety guarantees and having the compiler help you avoi errors. For example, option types make so you never ever get a nullpointerexception and after you get the hang of it you can also start encoding other proprties of your own. As a bonus, the language itself is quite clean and pretty, something I find surprising for a language designed by comitee.
- pnathan 14y agoThe Haskell Platform landing page is consistently beautiful. One of the prettiest landing pages I've come across. It lends a great deal of credibility to a technology when the up-front page looks like it was taken care of diligently. Contrast that to a page with only some text, a tarball link, and a mailing list (no names given, surely the reader can think of an example). I applaud the Haskell community for taking care of the non-technicals on their flagship download.
- tikhonj 14y agoI really like how they tie each release to a season. This way the page for each version is visually different from the last version (so it's easy to realize it was updated), but they still have a consistent theme.
- codemac 14y agoExactly. For how often the spj comment about "avoid success at all costs" is thrown about in the haskell community, it seems like they can't avoid success :)
- zmanian 14y agoHad a fairly painless upgrade from the previous haskell platform. The big win for everyone is that GHC 7.4.1 support in the Haskell platform opens up doing "cabal install" for lots of cutting edge packages like accelerate.
- eddie_the_head 14y agoCan anyone from this project or knowledgable about it comment on why Haskell Platform isn't available for Ubuntu 10.04 which is a LTS release?
- dons 14y agoHP on Ubuntu is listed here : http://packages.ubuntu.com/search?keywords=haskell-platform http://packages.ubuntu.com/search?keywords=haskell-platform In the case of Ubuntu, they're just downstream consumers of the Debian Haskell packaging team's efforts, and as a result are sometimes out of sync, http://packages.debian.org/search?keywords=haskell-platform http://packages.debian.org/search?keywords=haskell-platform Lucid Lynx was announced in 2009, and at there time there was no Haskell Platform in Debian to adopt. More recent Ubuntu versions support the HP, however.
- SkyMarshal 14y agoUse this [1] to install and maintain various ghc/platform pairs on older versions of Ubuntu. It uses Debian's update-alternatives tool to install multiple versions side-by-side and manage which version is 'active'. Also, you'll probably need to make sure you've got all the required libraries and their versions [2], 10.04 may need some of them upgraded, not sure. If that doesn't work, if you have dependency issues and can't fix them, then I suggest installing Ubuntu Server 12.04 in a virtual machine and playing with Haskell there instead. Ubuntu Server is relatively small, a base install in a VM is only about 1.5GB. 1. http://news.ycombinator.com/item?id=4062692 http://news.ycombinator.com/item?id=4062692 2. http://www.vex.net/~trebla/haskell/haskell-platform.xhtml http://www.vex.net/~trebla/haskell/haskell-platform.xhtml
- tilltheis 14y agoWhy does it open a new Safari window after the installation? That's pretty annoying but besides that I'm happy about every new version.
- MtnViewMark 14y agoBecause Apple's installer framework has the option to open a document after installation is complete: We have it open the start.html page. Alas, Apple's framework always opens web pages with Safari, no matter what the user has set as their default browser. I don't know why, since it is just the standard "open" action - suspect it has to do with the Installer running as root. If anyone knows a work around, I'm all ears!
- tilltheis 14y agoMaybe you could ask the user if it's okay to open the page after the installation.
- LesZedCB 14y agoWhat is the defacto IDE/editor for Haskell? I've messed around with Leksah, which looks like it's pretty nice, but I have absolutely no idea how it works.
- fusiongyro 14y agoThere really isn't a de-facto IDE/editor. The Emacs support continues to improve; Vim support is quite strong. There's EclipseFP for Eclipse. I have used Leksah and like it, but usually use TextMate.
- MtnViewMark 14y agoI use Leksah for larger projects. I use just my favorite text editor (Sublime Text 2) and cabal/ghc/ghci in a shell window for smaller.
- pjmlp 14y agoIf you don't have any religious issues with Java or Eclipse, then EclipseFP is the best one currently, http://eclipsefp.github.com/ http://eclipsefp.github.com/.
- SkyMarshal 14y agoFor anyone using Debian or a derivative and who wants to build from source and/or install without using the package manager, here's one way using Debian update-alternatives tool: https://github.com/byrongibson/scripts/tree/master/install/haskell https://github.com/byrongibson/scripts/tree/master/install/h... TLDR: Install GHC (binary) to a custom location like /opt/haskell/ghc, then add it to the system with the Debian update-alternatives tool, repeat with Haskell Platform. Only difference is you build Platform from source. update-alternatives scripts included for both.