Skip to content

Instantly share code, notes, and snippets.

@eed3si9n
Created November 21, 2017 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eed3si9n/8b1b074e62093377ad4881154f29a20b to your computer and use it in GitHub Desktop.
Save eed3si9n/8b1b074e62093377ad4881154f29a20b to your computer and use it in GitHub Desktop.
sbt:Hello> ++2.13.0-M2!
[info] Forcing Scala version to 2.13.0-M2 on all projects.
[info] Reapplying settings...
[info] Set current project to Hello (in build file:/private/tmp/consoletest/)
sbt:Hello> console
[info] Non-compiled module 'compiler-bridge_2.13.0-M2' for Scala 2.13.0-M2. Compiling...
[info] Compilation completed in 8.232s.
[info] Starting scala interpreter...
Welcome to Scala 2.13.0-M2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_144).
Type in expressions for evaluation. Or try :help.
scala> "foo"
res0: String = foo
scala>
[success] Total time: 21 s, completed Nov 21, 2017 12:56:56 AM
sbt:Hello> ++2.10.7!
[info] Forcing Scala version to 2.10.7 on all projects.
[info] Reapplying settings...
[info] Set current project to Hello (in build file:/private/tmp/consoletest/)
sbt:Hello> console
[info] Non-compiled module 'compiler-bridge_2.10' for Scala 2.10.7. Compiling...
[info] Compilation completed in 8.786s.
[info] Starting scala interpreter...
Welcome to Scala version 2.10.7 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_144).
Type in expressions to have them evaluated.
Type :help for more information.
scala> "foo"
res0: String = foo
scala>
[success] Total time: 15 s, completed Nov 21, 2017 12:57:47 AM
sbt:Hello> ++2.11.12!
[info] Forcing Scala version to 2.11.12 on all projects.
[info] Reapplying settings...
[info] Set current project to Hello (in build file:/private/tmp/consoletest/)
sbt:Hello> console
[info] Non-compiled module 'compiler-bridge_2.11' for Scala 2.11.12. Compiling...
[info] Compilation completed in 8.7s.
[info] Starting scala interpreter...
Welcome to Scala 2.11.12 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_144).
Type in expressions for evaluation. Or try :help.
scala> "foo"
res0: String = foo
scala>
[success] Total time: 13 s, completed Nov 21, 2017 12:58:42 AM
sbt:Hello> ++2.12.4!
[info] Forcing Scala version to 2.12.4 on all projects.
[info] Reapplying settings...
[info] Set current project to Hello (in build file:/private/tmp/consoletest/)
sbt:Hello> console
[info] Non-compiled module 'compiler-bridge_2.12' for Scala 2.12.4. Compiling...
[info] Compilation completed in 9.89s.
[info] Starting scala interpreter...
Welcome to Scala 2.12.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_144).
Type in expressions for evaluation. Or try :help.
scala> "foo"
res0: String = foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment