src/Pure/ROOT.ML
changeset 5568 0067dd151d7a
parent 5244 5313f781efe0
child 5607 5db9e2343ade
--- 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;