-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathegison-tutorial.cabal
35 lines (33 loc) · 1.39 KB
/
egison-tutorial.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Name: egison-tutorial
Version: 4.1.3
Synopsis: A tutorial program for the Egison programming language
Description: A tutorial program for the Egison programming language.
Egison is the programming langugage that realized non-linear pattern-matching against unfree data types.
With Egison, we can represent pattern-matching with unfree data types intuitively, especially for collection data, such as lists, multisets, sets.
Please try Egison with this tutorial program!
Homepage: http://www.egison.org
License: MIT
License-file: LICENSE
Author: Satoshi Egi
Maintainer: Satoshi Egi <[email protected]>
Category: Compilers/Interpreters
Build-type: Simple
Cabal-version: 2.0
source-repository head
type: git
location: https://github.com/egison/egison-tutorial.git
Executable egison-tutorial
default-language: Haskell2010
Main-is: Main.hs
Build-depends: egison >= 4.1.3
, base >= 4.0 && < 5
, haskeline
, transformers
, mtl
, directory
, filepath
, regex-posix
, exceptions
ghc-options: -Wall -Wno-name-shadowing
Other-modules: Paths_egison_tutorial
autogen-modules: Paths_egison_tutorial