From: Enrico Tassi Date: Mon, 13 Jun 2005 14:54:18 +0000 (+0000) Subject: renamed X-Git-Tag: PRE_STORAGE~44 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=f1a2aec37db8f0a4da540a027cf91554e27ba88c;p=helm.git renamed --- diff --git a/helm/matita/matita.lang b/helm/matita/matita.lang new file mode 100644 index 000000000..a20193f1f --- /dev/null +++ b/helm/matita/matita.lang @@ -0,0 +1,148 @@ + + + + + \ + + + %% + + + + \(\* + \*\) + + + + \(\*\* + \*\*\) + + + + theorem + definition + lemma + fact + remark + + + + alias + coercion + coinductive + corec + in + inductive + let + match + qed + rec + record + with + + + + + + \[ + + + \| + + + \] + + + \{ + + + \} + + + + Set + Prop + Type + + + + absurd + apply + assumption + auto + change + contradiction + cut + decompose + discriminate + elim + elimType + exact + exists + fold + fourier + goal + injection + intro + intros + left + letin + normalize + reduce + reflexivity + replace + rewrite + right + ring + simmetry + simplify + split + transitivity + whd + + + + + print + check + hint + quit + set + + + + elim + hint + instance + locate + match + + + + def + forall + lambda + to + exists + Rightarrow + Assign + land + lor + subst + + + + " + " + + + + diff --git a/helm/matita/temperino.lang b/helm/matita/temperino.lang deleted file mode 100644 index a20193f1f..000000000 --- a/helm/matita/temperino.lang +++ /dev/null @@ -1,148 +0,0 @@ - - - - - \ - - - %% - - - - \(\* - \*\) - - - - \(\*\* - \*\*\) - - - - theorem - definition - lemma - fact - remark - - - - alias - coercion - coinductive - corec - in - inductive - let - match - qed - rec - record - with - - - - - - \[ - - - \| - - - \] - - - \{ - - - \} - - - - Set - Prop - Type - - - - absurd - apply - assumption - auto - change - contradiction - cut - decompose - discriminate - elim - elimType - exact - exists - fold - fourier - goal - injection - intro - intros - left - letin - normalize - reduce - reflexivity - replace - rewrite - right - ring - simmetry - simplify - split - transitivity - whd - - - - - print - check - hint - quit - set - - - - elim - hint - instance - locate - match - - - - def - forall - lambda - to - exists - Rightarrow - Assign - land - lor - subst - - - - " - " - - - - diff --git a/helm/matita/tests/interactive/grafite.ma b/helm/matita/tests/interactive/grafite.ma new file mode 100644 index 000000000..70e9f4141 --- /dev/null +++ b/helm/matita/tests/interactive/grafite.ma @@ -0,0 +1,38 @@ +%% test per temperino.lang + +%% commento +(* commento *) +(** hint. **) + +inductive pippo : Type \def + | a : Type \to pippo + | b : Prop \to pippo + | c : Set \to pippo. + +definition pollo : Set \to Set \def + \lambda a:Set.a. + +inductive paolo : Prop \def t:paolo. + +theorem comeno : \forall p:pippo.pippo. +intros.assumption. +qed. + +definition f : pippo \to paolo \def + \lambda x:pippo. + match x with + [ (a z) \Rightarrow t + | (b z) \Rightarrow t + | (c z) \Rightarrow t ]. + +record w : Type \def { + mario : Prop; + pippo : Set +}. + +whelp locate pippo. + +print "coercions". + + + diff --git a/helm/matita/tests/interactive/temperino.ma b/helm/matita/tests/interactive/temperino.ma deleted file mode 100644 index 70e9f4141..000000000 --- a/helm/matita/tests/interactive/temperino.ma +++ /dev/null @@ -1,38 +0,0 @@ -%% test per temperino.lang - -%% commento -(* commento *) -(** hint. **) - -inductive pippo : Type \def - | a : Type \to pippo - | b : Prop \to pippo - | c : Set \to pippo. - -definition pollo : Set \to Set \def - \lambda a:Set.a. - -inductive paolo : Prop \def t:paolo. - -theorem comeno : \forall p:pippo.pippo. -intros.assumption. -qed. - -definition f : pippo \to paolo \def - \lambda x:pippo. - match x with - [ (a z) \Rightarrow t - | (b z) \Rightarrow t - | (c z) \Rightarrow t ]. - -record w : Type \def { - mario : Prop; - pippo : Set -}. - -whelp locate pippo. - -print "coercions". - - -