We are planning to write a highly concurrent application in any of the Very-Hi开发者_StackOverflow社区gh Level programming languages.
What I understand, Haskell have green threads. But how light weight are they. Is it possible to create 1 million threads?
I have some troubles with Haskell\'s type system. Situation: Following program is taking list of filenames on the command-line
C#: static int F(object x) { return x is string ? 1开发者_如何学JAVA : 2; } Haskell? The tricky bit seems to me that Haskell does not have a root type object.
I\'m trying to run the BinaryDerive.hs script as per the instructions in the Data.Binary doc, which states:
I am trying to do some work w开发者_如何学Cith HopenGL and I need a Ptr that points to a array of floats. From what I have read uarray and storableArray seem to be the way to go, in some combination s
Here\'s the next practical question. I want to download some big files from http server(database updates). This operation should block user UI, preventing him from inputti开发者_StackOverflow中文版ng
I\'ve installed the latest GHC package (6.12.1) on OS X, but I can\'t get Cabal to work.I\'ve removed the version I had previously that worked with GHC 6.10 and tried to re-install from scratch.The la
I am trying to port this haskell function to F# subs::[a] -> [[a]] subs []=[[]] subs (x:xs) =ys ++ map (x:) ys
The task is to create dynamically linked library, which encapsulates database hard work. Due to some design limitations I have a defined interface, which consist of numerous functions. Each function t