diff options
Diffstat (limited to 'CleanC.dcl')
-rw-r--r-- | CleanC.dcl | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -23,12 +23,16 @@ SOFTWARE. */ definition module CleanC from StdClass import class toInt, class toString, class toReal, - class fromInt, class fromString, class fromReal + class fromInt, class fromString, class fromReal, + class == :: State -:: CType = Int | String | Real -:: CParam = CI Int | CS String | CR Real +:: CType = Int | String | Real | Void +:: CParam = CI Int | CS String | CR Real | CV + +instance == CType +instance == CParam cNewState :: *State |