(using 5cr1p7-haX0R from distrib/unix/latest...)
te.scala:2: overloaded method value >= with alternatives (scala.Int)scala.Boolean <and> (scala.Long)scala.\
Boolean (scala.Float)scala.Boolean <and> (scala.Double)scala.Boolean cannot be applied to (scala.Cha\
r)
def isLetter(ch:Char) = ch>='A' && ch<='Z';
^
te.scala:4: overloaded method value > with alternatives (scala.Int)scala.Boolean (scala.Long)scala.Boolean\
<and> (scala.Float)scala.Boolean (scala.Double)scala.Boolean cannot be applied to (scala.Char)
def isLetter2(ch:Char) = ch>'A' && ch<'Z';
^
two errors found
|