Create small command line program that parses arguments
Before starting my take-home assignment, the instructions advised me to create a "Hello, world" program in the language of my choice. Since I'm choosing Haskell, I created this example as my starter boilerplate.
This commit is contained in:
parent
ef40622a87
commit
b1c403f6b9
3 changed files with 56 additions and 0 deletions
9
scratch/brilliant/shell.nix
Normal file
9
scratch/brilliant/shell.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
let
|
||||
pkgs = import /home/wpcarro/nixpkgs {};
|
||||
in pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
||||
optparse-applicative
|
||||
]))
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue