Forrest logo
back to context overview

scala

List of commands for scala:

  • scala:tldr:454fd scala: Execute a single Scala command in the command-line.
    $ scala -e ${command}
    try on your machine
    explain this command
  • scala:tldr:4919b scala: Start the interpreter with a dependency in the classpath.
    $ scala -classpath ${filename-jar} ${command}
    try on your machine
    explain this command
  • scala:tldr:baad2 scala: Start a REPL (interactive shell).
    $ scala
    try on your machine
    explain this command
  • scala:tldr:f57ac scala: Execute a Scala script.
    $ scala ${script-scala}
    try on your machine
    explain this command
back to context overview