Skip to content

Instantly share code, notes, and snippets.

View bishboria's full-sized avatar

Stuart Gaλe bishboria

View GitHub Profile
@bishboria
bishboria / keybase.md
Created September 24, 2014 13:19
keybase

Keybase proof

I hereby claim:

  • I am bishboria on github.
  • I am bishboria (https://keybase.io/bishboria) on keybase.
  • I have a public key whose fingerprint is 4243 FB55 3364 0BE8 D08E 876F 078A 4BBA 842F C1A0

To claim this, I am signing this object:

@bishboria
bishboria / SingleCaseInduction.agda
Created March 23, 2014 10:49
Single case induction
module SingleCaseInduction where
-- Usual definition of ℕ
data N : Set where
z : N
s : N → N
-- Single case definition of ℕ
data _+_ (A : Set) (B : Set) : Set where