Live data from Hacker News

The New Haskell Homepage

new-www.haskell.org

1–10 of 258 posts

Re: The New Haskell Homepage

#3
Whoa, the change happened! My girlfriend and I both think it looks awesome :)

Anyone know if there are plans to add the interactive/javascript examples as well?

EDIT: Had noscript on, everything looks great.

Re: The New Haskell Homepage

#4
Wow I've gotta say, this looks great.

Something that bugs me is I couldn't copy the code in the upper right to the code "try it" section. I haven't used haskell for 6-12 months, so I'm not sure what I'm doing wrong.

Here's a screenshot: http://imgur.com/N2SdFVq

Regardless of how to fix this, I think something should be changed so this can't be someone's first impression.

Re: The New Haskell Homepage

#6
The box for "Try haskell expression here" is a little confusing, I tried to click on the white area to focus and didn't get any response. You apparently have to click on the same line, near the lambda symbol to focus?

Edit: Additionally, I really miss the lovely download page http://www.haskell.org/platform/ - and the non-home pages feel a little underwhelming and underdeveloped in general.

Re: The New Haskell Homepage

#8
"Try haskell expression here" + lessons is very nice.

Just a little nitpick:

    λ map (+1) [1..5]
    can't find file: Imports.hs
    λ map (+ 1) [1..5]
    [2,3,4,5,6]:: (Enum b, Num b) => [b]
though the first expression is what suggested in lesson 4.

Edit: looks like some random bug.

Re: The New Haskell Homepage

#10
post #4

Wow I've gotta say, this looks great. Something that bugs me is I couldn't copy the code in the upper right to the code "try it" section. I haven't used haskell for 6-12 months, so I'm not sure what I'm doing wrong. Here's a screenshot: http://imgur.com/N2SdFVq Regardless of how to fix this, I think something should be changed so this can't be someone's first impression.

It doesn't seem to support function declaration.
Post reply on HN