Evan Martin (evan) wrote in evan_tech,
Evan Martin
evan
evan_tech

haskell syntax idea

I often end up with nested parens, when I need binding on the right:
foo (bar (baz (etc x)))
That's ok in Lisp where the parens become invisible, but parens are infrequent enough in Haskell that they're ugly. So they provide an "apply" operator that just has different binding rules, and the above can be written:
foo $ bar $ baz $ etc x
but the dollar signs are huge! If it were colon, it could be written like this
foo: bar: baz: etc x
Where the colon instinctively means: "I'm done supplying arguments to this function; everything to the right of here is its final argument."
Tags: haskell
Subscribe

  • your vcs sucks

    I've been hacking on some Haskell stuff lately that's all managed in darcs and it's reminded me of an observation I made over two years ago now (see…

  • ghc llvm

    I read this thesis on an LLVM backend for GHC, primarily because I was curious to learn more about GHC internals. The thesis serves well as an…

  • found my bug!

    Not too interesting, but this has been bugging me for a week. Been working on a toy program that proxies a TCP connection. It was working fine for…

  • Post a new comment

    Error

    default userpic
    When you submit the form an invisible reCAPTCHA check will be performed.
    You must follow the Privacy Policy and Google Terms of use.
  • 10 comments

  • your vcs sucks

    I've been hacking on some Haskell stuff lately that's all managed in darcs and it's reminded me of an observation I made over two years ago now (see…

  • ghc llvm

    I read this thesis on an LLVM backend for GHC, primarily because I was curious to learn more about GHC internals. The thesis serves well as an…

  • found my bug!

    Not too interesting, but this has been bugging me for a week. Been working on a toy program that proxies a TCP connection. It was working fine for…