tldr/pages/common/scala.md

25 lines
323 B
Markdown
Raw Normal View History

2017-12-05 18:05:46 +00:00
# scala
2017-12-05 18:04:46 +00:00
2017-12-05 18:05:28 +00:00
> Scala application launcher and interactive interpreter
2017-12-05 18:04:46 +00:00
- Call a Scala interactive shell (REPL):
`scala`
- Execute a script in a given Scala file:
`scala {{script.scala}}`
- Execute a .jar program:
`scala {{filename.jar}}`
- Execute a single Scala command in the command line:
`scala -e {{command}}`