Created
December 29, 2013 19:59
-
-
Save eamsden/8174157 to your computer and use it in GitHub Desktop.
Simple Idris source for testing things related to metavariables
This file contains 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 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