GenericML.hs revision edf1cf81945b26f90b0a40bf1669099466e7e43e
{-# OPTIONS -fglasgow-exts #-}
module GenericML where
import GMPAS
import ModalLogic
instance ModalLogic Kars Grules where
parseIndex = do l <- letter
;Kars i <- parseIndex
;return (Kars (l:i))
<|> do return (Kars [])
matchRO ro = if (length ro == 0)
then []
else [Grules ()]
-------------------------------------------------------------------------------