45
45
(* note: less need for cloneable, copyable as in Java. Only needed
46
46
* when use ref, but refs should be avoided anyway so better not to
49
49
* Often found this in haskell:
51
51
* data x = ... deriving (Read, Show, Eq, Ord, Enum, Bounded)
53
53
* Apparently this is what is considered basic by haskell.