This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- This is going to be on Hackage soon! https://github.com/gatlin/surely | |
| {-# LANGUAGE BangPatterns #-} | |
| -- | | |
| -- Module : AI.Surely | |
| -- Copyright : 2012 Gatlin Johnson | |
| -- License : LGPL 3.0 | |
| -- Maintainer : rokenrol@gmail.com | |
| -- Stability : experimental |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Maths where | |
| data Nat : Set where | |
| zero : Nat | |
| suc : Nat → Nat | |
| plus : Nat → Nat → Nat | |
| plus zero n = n | |
| plus (suc m) n = suc (plus m n) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mathematical Logic - Kleene | |
| Basic Category Theory for Computer Scientists - Pierce | |
| A Book of Abstract Algebra - Pinter | |
| Conceptual Mathematics - Lawvere & Schanuel | |
| An Introduction to Formal Logic - Smith | |
| To Mock A Mockingbird - Smullyan | |
| Introduction To Logic - Tarski | |
| Purely Functional Data Structures - Okasaki | |
| Topoi: The Categorial Analysis of Logic - Goldblatt | |
| Lectures on the Curry-Howard Isomorphism - Sorensen, Urzyczyn |
NewerOlder