Questions tagged [haskell-mode]

The haskell-mode package is a set of major modes for Emacs for writing Haskell code and working with Haskell projects.

The haskell-mode package is a set of major modes for Emacs for writing Haskell code and working with Haskell projects.

See https://github.com/haskell/haskell-mode

62 questions
0
votes
1 answer

Directed Graph in Haskell

I am now struggling with Haskell. Even, I have some experience with imperative languages, with OOP, but Haskell seems to be different from them. I under-evaluated Haskell, and think learning a new language is not a problem with me. However, after…
chipbk10
  • 5,783
  • 12
  • 49
  • 85
0
votes
2 answers

/bin/sh: 1: ./respondPalindromes: not found - What does this mean?

I am able to run the code below in terminal which is in respondPalindromes.hs file but failing to test the same in emacs. respondPalindromes = unlines . map (\xs -> if isPalindrome xs then "palindrome" else "not a palindrome") . lines where…
Optimight
  • 2,989
  • 6
  • 30
  • 48
1 2 3 4
5