Created
February 12, 2014 08:54
-
-
Save staafl/8952078 to your computer and use it in GitHub Desktop.
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
> let rec gcd = function | |
- | a 0 -> a | |
- | a b -> gcd b (a % b);; | |
| a 0 -> a | |
----^ | |
stdin(29,5): error FS0039: The pattern discriminator 'a' is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment