# HG changeset patch # User wenzelm # Date 957881130 -7200 # Node ID c7d94539867739068797995dc73b56fe86d6f6c6 # Parent 03a2ae3059da33f5043fb4cdd00e92d5e4087bc1 added semicolons; diff -r 03a2ae3059da -r c7d945398677 doc-src/TutorialI/ToyList2/ToyList1 --- a/doc-src/TutorialI/ToyList2/ToyList1 Tue May 09 15:10:25 2000 +0200 +++ b/doc-src/TutorialI/ToyList2/ToyList1 Tue May 09 16:05:30 2000 +0200 @@ -1,4 +1,4 @@ -theory ToyList = PreList: +theory ToyList = PreList:; datatype 'a list = Nil ("[]") | Cons 'a "'a list" (infixr "#" 65); diff -r 03a2ae3059da -r c7d945398677 doc-src/TutorialI/ToyList2/ToyList2 --- a/doc-src/TutorialI/ToyList2/ToyList2 Tue May 09 15:10:25 2000 +0200 +++ b/doc-src/TutorialI/ToyList2/ToyList2 Tue May 09 16:05:30 2000 +0200 @@ -1,17 +1,17 @@ lemma app_Nil2 [simp]: "xs @ [] = xs"; apply(induct_tac xs); -apply(auto).; +apply(auto);.; lemma app_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"; apply(induct_tac xs); -apply(auto).; +apply(auto);.; lemma rev_app [simp]: "rev(xs @ ys) = (rev ys) @ (rev xs)"; apply(induct_tac xs); -apply(auto).; +apply(auto);.; theorem rev_rev [simp]: "rev(rev xs) = xs"; apply(induct_tac xs); -apply(auto).; +apply(auto);.; -end +end;