nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/coq
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

13 lines
No EOL
238 B
Text

Require Import Coq.Lists.List.
Section with_T.
Context {T : Type}.
Fixpoint length (ls : list T) : nat :=
match ls with
| nil => 0
| _ :: ls => S (length ls)
end.
End with_T.
Definition a_string := "hello \" world".