Vanessa McHale

Results 49 comments of Vanessa McHale

I suspect this may be upstream - what happens when you run ``` cat atspkg.dhall | dhall ``` ? You can install `dhall` from [here](https://github.com/dhall-lang/dhall-haskell/releases/tag/1.21.0) or via `cabal new-install dhall`....

Well, `sn` is the atomic symbol for tin. "The tin summer" is just a pun on "The tin drummer", stuff like "liboskar" references the book. If you come up with...

@sjakobi as in languages with or-patterns? Or such combined records.

Oh, as in I was wondering if you were looking for examples of languages with or-patterns.

I think OCaml has them as a full-fledged feature! But I do not know of any short-hands for records, unfortunately.

I put them in my `cabal.project` file as a line like ``` write-ghc-environment-files: always ``` (perhaps you've run into another cabal bug 😬 )

My workflow is ``` cabal build --write-ghc-environment-files always doctest src ``` For whatever reason `doctest` by itself doesn't work. And I set `build-type: Simple` in the `.cabal` file (I think...

>The latter can be done by using GCC or Clang, including the include file into a constructed C file, compiling it, and running it, such that it prints out the...

I think you want something like ``` data BzStream {#pointer *bz_stream as BzStreamPtr -> BzStream #} ``` perhaps? Here's an example of mine: https://github.com/vmchale/lzlib/blob/master/src/Codec/Lzip/Raw.chs#L87

GHC 9.0.1! Thanks, I will! I might be mistakenly not using `hFlush` let me see :thinking: