(initial commit)
authorhaftmann
Wed, 22 Jun 2005 11:08:53 +0200
changeset 16526 644dddf4e932
parent 16525 966b4e040188
child 16527 80ac7ac3733c
(initial commit)
src/Pure/class.ML
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Pure/class.ML	Wed Jun 22 11:08:53 2005 +0200
@@ -0,0 +1,18 @@
+(*  Title:      Pure/class.ML
+    ID:         $Id$
+    Author:     Florian Haftmann, TU Muenchen
+
+Haskell98-like type classes, simulated by locales
+*)
+
+(*!!! for now, only experimental scratch code !!!*)
+
+signature CLASS =
+sig
+    
+end
+
+structure Class : CLASS =
+struct
+
+end;