I hereby claim:
- I am sergv on github.
- I am sergv (https://keybase.io/sergv) on keybase.
- I have a public key whose fingerprint is 47E4 DA2E 6A3F 58FE 3F01 98F4 D6CD 2953 0F98 D6B8
To claim this, I am signing this object:
| import Distribution.Simple (defaultMainWithHooks) | |
| import Distribution.Simple.UUAGC (uuagcLibUserHook) | |
| import UU.UUAGC (uuagc) | |
| main :: IO () | |
| main = defaultMainWithHooks $ | |
| uuagcLibUserHook uuagc |
| ---------------------------------------------------------------------------- | |
| -- Tested with ghc 8.2.2 | |
| ---------------------------------------------------------------------------- | |
| {-# LANGUAGE DeriveFoldable #-} | |
| {-# LANGUAGE DeriveFunctor #-} | |
| {-# LANGUAGE DeriveTraversable #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| {-# LANGUAGE StandaloneDeriving #-} | |
| {-# LANGUAGE TupleSections #-} |
| {-# LANGUAGE BangPatterns #-} | |
| {-# LANGUAGE OverloadedStrings #-} | |
| module BytestringFolds (main) where | |
| import Control.DeepSeq | |
| import Control.Exception | |
| import qualified Data.ByteString as BS | |
| import qualified Data.ByteString.Char8 as C8 | |
| import qualified Data.ByteString.Internal as BS |
I hereby claim:
To claim this, I am signing this object:
| #! /usr/bin/env bash | |
| # | |
| # File: install-packages.sh | |
| # | |
| # Created: Saturday, 29 October 2016 | |
| # | |
| # treat undefined variable substitutions as errors | |
| set -u | |
| # propagate errors from all parts of pipes |
| {-# LANGUAGE DeriveFoldable #-} | |
| {-# LANGUAGE DeriveFunctor #-} | |
| {-# LANGUAGE DeriveTraversable #-} | |
| {-# LANGUAGE KindSignatures #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| module Catamorphisms where | |
| import Data.Foldable | |
| import Data.Monoid |