├── .gitignore ├── LICENSE ├── Main.hs ├── README ├── Setup.hs ├── cabal.config └── termplot.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/Main.hs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/README -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/cabal.config -------------------------------------------------------------------------------- /termplot.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimenezrick/termplot/HEAD/termplot.cabal --------------------------------------------------------------------------------