1 class Comparable = 2 def (>) (rhs : Self) : bool 3 def (<) (rhs : Self) : bool 4 def (>=) (rhs : Self) : bool 5 def (<=) (rhs : Self) : bool 6 7 type Char 8 def (>) (rhs : Char) : bool 9 def (<) (rhs : Char) : bool 10 def (>=) (rhs : Char) : bool 11 def (<=) (rhs : Char) : bool 12 13 is Comparable 14