I hereby claim:
- I am fimad on github.
- I am fimad (https://keybase.io/fimad) on keybase.
- I have a public key ASBbMAXBwM-nOtClBaNP6YAOUGdNbVoduz_b14Y4MTYTkAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| use Getopt::Long; | |
| #Parse flags using Getopt::Long. | |
| my $desc = ''; | |
| my $public = 0; | |
| my $user = ''; | |
| my $verbose = 0; | |
| GetOptions ('desc:s' => \$desc, | |
| 'public' => \$public, |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE MultiParamTypeClasses #-} | |
| {-# LANGUAGE OverlappingInstances #-} | |
| {-# LANGUAGE TypeOperators #-} | |
| -- An example of how to have an arbitrary stack of types, while still allowing | |
| -- for easy querying and modifying the value at arbitrary depths of the stack. | |
| -- | |
| -- While having multiple of the same type in the stack still type checks, the |