Skip to content

Instantly share code, notes, and snippets.

@pnlph
Created May 25, 2020 14:51
Show Gist options
  • Save pnlph/78eaaa47868e49685eed09ab58d9af30 to your computer and use it in GitHub Desktop.
Save pnlph/78eaaa47868e49685eed09ab58d9af30 to your computer and use it in GitHub Desktop.
module test where
open import Data.Nat
open import Data.Product
foo : ℕ → ℕ
foo = λ where
zero → 1
(suc x) → 0
bar : ℕ → ℕ
bar = λ where
x → {!!}
bar2 : ℕ × ℕ
bar2 .proj₁ = {!!}
bar2 .proj₂ = {!!}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment