packages feed

unique-lang-0.1.0.0: unique-lang.cabal

cabal-version: 2.4
name:          unique-lang
version:       0.1.0.0
author:        Owen Bechtel
maintainer:    ombspring@gmail.com

category: Compilers/Interpreters
synopsis: Esoteric programming language where each number can only appear once

description:
  Unique is an esoteric programming language where each number can only occur once. Every variable in Unique is stored in a single data structure: a stack of integer arrays. You can find a description of how the language works [here](https://owenbechtel.com/unique).

homepage:           https://github.com/UnaryPlus/unique
bug-reports:        https://github.com/UnaryPlus/unique/issues
license:            MIT
license-file:       LICENSE
extra-source-files: CHANGELOG.md, README.md

source-repository head
  type:     git
  location: https://github.com/UnaryPlus/unique.git

executable unique
    hs-source-dirs:   app
    default-language: Haskell2010
    ghc-options:      -Wall
    main-is:          Main.hs
    other-modules:    Examples

    build-depends:
      base >= 4.11 && < 5,
      transformers >= 0.4 && < 0.7,
      text >= 0.7 && < 2.1,
      neat-interpolation >= 0.1.1 && < 0.6