Simon Shine
Simon Shine
@guygastineau: Cool :) I think I learned something about how to not give feedback doing this one, haha. I think if you regard all of the comments above as one...
@guygastineau: Upon revisiting the comment thread in this PR, I see [this comment](https://github.com/exercism/haskell/pull/835#issuecomment-528348197) containing a link to a proposed copy of the handed-out solution and a test suite that is...
The main drawback of commenting out tests by default is that lazy students will get the impression that their program works because they haven't enabled all tests. At work we...
I thought that maybe val run_test_tt_main : ?exit:(int -> unit) -> test -> unit means that we can exit the test suite given a failure. But trying ```ocaml let ()...
`recurse` delivers some convenience wrt. not pushing the same jump address to the stack repeatedly, since `call`-`return` pops it. Let's assess this removal when we write a big enough program...
I agree. In the meantime, several of the tutorials look kind of skewed.
Sounds like a complicated way to avoid ``.
Jeg kunne godt bruge denne feature, da jeg er begyndt at ro kajak i år. Det kunne være rart at vide, forud for mit besøg i kajakklubben, om jeg skal...
I'm quite convinced that every major webserver that serves static files will redirect `/foo` to `/foo/` if it's a directory. If not, it is not possible to distribute HTML with...
I was being silly; this, of course, needs to be ```haskell genInteger :: Gen Integer genInteger = Gen.integral (Range.exponentialFrom 0 1e-128 1e128) ``` If you think the documentation can be...