Skip to content

Instantly share code, notes, and snippets.

@eamsden
Created December 29, 2013 19:59
Show Gist options
  • Save eamsden/8174157 to your computer and use it in GitHub Desktop.
Save eamsden/8174157 to your computer and use it in GitHub Desktop.
Simple Idris source for testing things related to metavariables
module Test
fact2 : Nat -> Nat
fact2 Z = S Z
fact2 (S n) = let n' = S n in ?fct
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment