├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── oops.cabal ├── src └── Data │ └── Variant.hs └── test └── Main.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .ghc* 2 | dist-newstyle 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /oops.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/oops.cabal -------------------------------------------------------------------------------- /src/Data/Variant.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/src/Data/Variant.hs -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-am-tom/oops/HEAD/test/Main.hs --------------------------------------------------------------------------------