Skip to content

Instantly share code, notes, and snippets.

@moutend
Created March 21, 2014 12:17
Show Gist options
  • Select an option

  • Save moutend/9684978 to your computer and use it in GitHub Desktop.

Select an option

Save moutend/9684978 to your computer and use it in GitHub Desktop.
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