Skip to content

Commit ebf8bfb

Browse files
author
Vanessa McHale
committed
from template
0 parents  commit ebf8bfb

7 files changed

+61
-0
lines changed

LICENSE

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Copyright Vanessa McHale (c) 2017
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
7+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8+
9+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# recursion_schemes
2+
3+
## Installation
4+
5+
## Configuration

Recursion_schemes.idr

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-- ---------------------------------------------------------------- [ Main.idr ]
2+
-- Module : Main
3+
-- --------------------------------------------------------------------- [ EOH ]
4+
module Main
5+
6+
import public Recursion_schemes.Lib
7+
8+
-- --------------------------------------------------------------------- [ EOF ]

Recursion_schemes/Lib.idr

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- ----------------------------------------------------------------- [ Lib.idr ]
2+
-- Module : Recursion_schemes.Lib
3+
-- Description :
4+
-- --------------------------------------------------------------------- [ EOH ]
5+
module Recursion_schemes.Lib
6+
7+
%access export

Test/Spec.idr

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module Test.Spec
2+
3+
import Specdris.Spec
4+
5+
export
6+
7+
specSuite : IO ()
8+
specSuite = spec $ do
9+
describe "something trivial" $
10+
it "should add two numbers correctly" $
11+
14 + 3 `shouldBe` 17

recursion_schemes.ipkg

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package recursion_schemes
2+
3+
sourceloc = git://[email protected]:vmchale/recursion_schemes.git
4+
bugtracker = http://www.github.com/vmchale/recursion_schemes/issues
5+
6+
modules = Recursion_schemes
7+
, Recursion_schemes.Lib

recursion_schemes_test.ipkg

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package recursion_schemes
2+
3+
sourceloc = git://[email protected]:vmchale/recursion_schemes.git
4+
bugtracker = http://www.github.com/vmchale/recursion_schemes/issues
5+
6+
pkgs = specdris
7+
8+
modules = Recursion_schemes
9+
, Recursion_schemes.Lib
10+
, Test.Spec
11+
12+
tests = Test.Spec.specSuite

0 commit comments

Comments
 (0)