aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/test8.v
blob: c6ab8c59ec6da6d961aac95160cb083fa1abc8db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Add LoadPath "/home/courtieu/coq/actual/ide". 
Require Import utf8.

(* Printing of unicode notation, in *goals* *)
Lemma test : forall A:Prop, A -> A.
auto.
Qed.

(* Parsing of unicode notation, in *goals* *) 
Lemma test2 : ∀ A:Prop, A → A.
intro.
intro.
auto.
Qed.

(* Printing of unicode notation, in *response* *)
Check (fun (X:Set)(x:X) => x).

(* Parsing of unicode notation, in *response* *)
Check (∀A, A→A).