Scala in Actionという本の中で、 Scala REPL 内で:importコマンドを使用すると、次のようになると書かれています。
scala> :imports
1) import java.lang._ (153 types, 158 terms)
2) import scala._ (798 types, 806 terms)
3) import scala.Predef._ (16 types, 167 terms, 96 are implicit)
この本によると、上記のパッケージはすべて自動的にインポートされます。しかし、私の REPL (Scala 2.10.2) では、1 行しか返されません。
scala> :imports
1) import scala.Predef._ (162 terms, 78 are implicit)
何か問題がありますか?