nix-book/source/recipes/shebang/haskell-nixpkg/my-script.sh
Amy de Buitléir 00bfdf2c0f temp
2025-09-14 20:49:57 +01:00

10 lines
209 B
Bash
Executable file

#! /usr/bin/env nix-shell
#! nix-shell -p "haskellPackages.ghcWithPackages (p: [p.extra])"
#! nix-shell -i runghc
import Data.List.Extra
main :: IO ()
main = do
print $ lower "ABCDE"
print $ upper "XYZ"