The scala command line interpreter shows:
scala> Console.readInt
warning: there was one deprecation warning; re-run with -deprecation for details
res0: Int = 65
Is it Console.readInt
really obsolete? If so, what is the correct way to enter data?
I am using scala version 2.11.7 on OS X 10.10.5.
source
share