Callan McGill
Callan McGill
Hi, This is a really amazing tool, thank you for making it! I may be using it incorrectly, but when I try to invoke it as: ```shell alectryon --frontend coq...
At the end of the Debruijn chapter there is an exercise: ``` Exercise mul-example (recommended) Using the evaluator, confirm that two times two is four. ``` I am unsure if...
This exercise asks us to prove an isomorphism: ```agda All P xs ≃ (∀ {x} -> x ∈ xs -> P x) ``` I believe this is only possible with...
The documentation for [`scanl`](https://hackage.haskell.org/package/text-1.2.5.0/docs/Data-Text.html#v:scanl) was probably taken straight from `Data.List` but is a little confusing in the context of `Text` (I also am not very clear on whether scans make...
It would be nice to have a function like `words/lines` that remembers the relevant whitespace information. One implementation (which I haven't tested very thoroughly and is probably not the best...
I was wondering if it is possible to to suppress the output other than the observations e.g. to not get the configuration output and ignored observation ID output? Thanks!
When trying to compile from melpa I get many errors of the form: ``` Error: Wrong type argument: keymapp, nil ``` Any ideas on how I can fix this or...
There is a nice library by Ed Kmett called parsnip: https://hackage.haskell.org/package/parsnip-0/ This represents a parser as follows: ```haskell newtype Option a = Option# (# a | (##) #) type Result...
It would be nice for IntMap and Map to offer variants on insert (probably called `unsafeInsertNew`) for keys we happen to know cannot be in the map. I'm happy to...
It would be useful for us to have a general discussion on places where unboxing and similar techniques might have any benefit. For example there is an old issue here:...