added Int to BasisLibrary
authorpaulson
Fri, 25 Sep 1998 14:06:27 +0200
changeset 5568 0067dd151d7a
parent 5567 99c6ef61288f
child 5569 8c7e1190e789
added Int to BasisLibrary
src/Pure/ROOT.ML
--- a/src/Pure/ROOT.ML	Fri Sep 25 14:06:00 1998 +0200
+++ b/src/Pure/ROOT.ML	Fri Sep 25 14:06:27 1998 +0200
@@ -60,11 +60,12 @@
 (*if true then some packages won't be too serious about actually proving things*)
 val quick_and_dirty = ref false;
 
-(*several object-logics declare theories named List or Option, hiding
-  the eponymous basis library structures*)
+(*several object-logics declare theories that hide basis library structures*)
 structure BasisLibrary =
 struct
-  structure List = List and Option = Option;
+  structure List   = List 
+  and       Option = Option
+  and       Int    = Int;
 end;
 
 open Use;