doc-src/Intro/prod.thy
author Walther Neuper <neuper@ist.tugraz.at>
Thu, 12 Aug 2010 15:03:34 +0200
branchisac-from-Isabelle2009-2
changeset 37913 20e3616b2d9c
parent 105 216d6ed87399
permissions -rw-r--r--
prepare reactivation of isac-update-Isa09-2
     1 Prod = FOL +
     2 types   "*" 2                                 (infixl 20)
     3 arities "*"     :: (term,term)term
     4 consts  fst     :: "'a * 'b => 'a"
     5         snd     :: "'a * 'b => 'b"
     6         Pair    :: "['a,'b] => 'a * 'b"       ("(1<_,/_>)")
     7 rules   fst     "fst(<a,b>) = a"
     8         snd     "snd(<a,b>) = b"
     9 end