
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 machineexplain this command
-
scala:tldr:4919b scala: Start the interpreter with a dependency in the classpath.$ scala -classpath ${filename-jar} ${command}try on your machineexplain this command
-
scala:tldr:baad2 scala: Start a REPL (interactive shell).$ scalatry on your machineexplain this command
-
scala:tldr:f57ac scala: Execute a Scala script.$ scala ${script-scala}try on your machineexplain this command