Skip to content

Instantly share code, notes, and snippets.

@jakobrs

jakobrs/File.hs Secret

Last active December 31, 2019 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakobrs/85a3149ae80f761610f64a138cc162a0 to your computer and use it in GitHub Desktop.
Save jakobrs/85a3149ae80f761610f64a138cc162a0 to your computer and use it in GitHub Desktop.
Hello World with a redundant import
#! /usr/bin/env nix-shell
#! nix-shell -p "haskellPackages.ghcWithPackages (pkgs: with pkgs; [ case-insensitive ])" -i runghc
import qualified Data.CaseInsensitive as CI
main :: IO ()
main = putStrLn "Hello, World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment