Rahul Muttineni
Rahul Muttineni
See the discussions here: https://github.com/typelead/eta/issues/396#issuecomment-421266345. Should be a fairly easy task for a new contributor.
@elfprince13 suggested that we look at the current state-of-the-art in statically typed metaprogramming and incorporate it into Eta eventually. Paper - https://infoscience.epfl.ch/record/232427 Implementation in Scala - https://github.com/epfldata/squid
Both packages fail the xltest both of which create an insanely large (lazy) input to hash. It was observed that the Eta process quickly went from 1.0GB -> 2.0GB memory...
The basement package has some functionality that relies on the pinned status of a ByteArray. We should implement those primops and make it work eventually.
A lot of the foreign calls in the foundation package were stubbed out since most of that functionality probably wasn't going to be used. We should gradually implement those as...
From: https://lotz84.github.io/haskellbyexample/ex/spawning-processes ```haskell import System.Process import System.IO main :: IO () main = do (Just hin, Just hout, _, _) grep hello hello grep ``` but gives ``` > grep...
Currently, when submitting a patch that involves a change to the .cabal file, you need to submit the .caba file as well. This was done for making the patching implementation...