I’m a .NET developer by day, but have been playing with Haskell in my spare time for awhile now. I’m curious: any Haskell .net implementations in the same vein as IronPython?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no active work on porting the GHC runtime to .NET.
F# is the closest thing, though be aware it is based on OCaml.
One of the core differences is, that Haskell is always lazy, while OCaml and F# evaluate mostly strict, and lazy just in some special cases.
There are many similarities besides that. All three do focus on referential transparency by default, and have very good type inference, as an example.