Search Results

1
vote
2answers
273 views

Getting the Local AppData folder in Haskell

Hi, I'm trying to get the location of Window's Local AppData folder in a version-agnostic manner using Haskell, and I'm having a bit of trouble doing so. I've tried using the System.Win32.Registry …
1
vote

Is there a simple way in Haskell to call a shell command in Windows without the command window popping up?

You should really tell us how you are trying to do this currently, but on my system (using linux) the following snippet will run a command without opening a new terminal window. It should work the …
0
votes

Haskell string list through lines

Remember that lists are monads in haskell, with the definition: instance Monad [] where m >>= f = concatMap f m return x = [x] fail s = [] So …
0
votes

Creating monads in haskell

Judging from your description of what you want your monad to do, I think you want something a bit like this: data LeafConType a = LeafCon { runLeafCon' :: Int -> Int -> (Maybe …