Patrick Hurst

Results 3 issues of Patrick Hurst

I'm testing out hsenv to manage my packages; I created a new hsenv and installed hdevtools under it; however, unless I also manually specify the -package-conf with -g, it doesn't...

ghc outputs blank lines between error messages, whereas hdevtools doesn't. It'd be more consistent to output blank lines (and make parsing easier; see lunaryorn/flycheck#32, which also has a patch to...

The example for `__::memoize` doesn't work: ``` $fibonacci = function($n) use (&$fibonacci) { return $n < 2 ? $n : $fibonacci($n - 1) + $fibonacci($n - 2); }; $fastFibonacci =...