Created
March 21, 2014 12:17
-
-
Save moutend/9684978 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
| Coq < (* 二つの自然数の和を返す *) | |
| Coq < Definition plus (n : nat)(m : nat) : nat := n + m. | |
| plus is defined | |
| Coq < Eval compute in plus 3 5. | |
| = 8 | |
| : nat | |
| Coq < |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment