diff options
author | Ha-Duong, NGUYEN <cmpitg@gmail.com> | 2015-08-03 15:47:02 +0700 |
---|---|---|
committer | Ha-Duong, NGUYEN <cmpitg@gmail.com> | 2015-08-03 15:47:02 +0700 |
commit | 496b11f8ce33f38fc1e29c23ee8c4261a811b967 (patch) | |
tree | 654d3b165fa20a5e800d22ac6d95f6db64ecf4d0 /scala.html.markdown | |
parent | 1f6f7b784345a7224fef64bc27db206a0946b366 (diff) |
scala: consistent style, language correction
Diffstat (limited to 'scala.html.markdown')
-rw-r--r-- | scala.html.markdown | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scala.html.markdown b/scala.html.markdown index e6638121..12441af9 100644 --- a/scala.html.markdown +++ b/scala.html.markdown @@ -16,15 +16,16 @@ Scala - the scalable language Set yourself up: 1) Download Scala - http://www.scala-lang.org/downloads - 2) unzip/untar in your favourite location and put the bin subdir on the path - 3) Start a scala REPL by typing scala. You should see the prompt: + 2) Unzip/untar to your favourite location and put the bin subdir in your `PATH` environment variable + 3) Start a Scala REPL by running `scala`. You should see the prompt: scala> - This is the so called REPL (Read-Eval-Print Loop). You may type any valid - Scala expression into it, and the result will be printed. We will explain what - Scala files look like further into this tutorial, but for now, let's start - with some basics. + This is the so called REPL (Read-Eval-Print Loop). You may type any Scala + expression, and the result will be printed. We will explain what Scala files + look like further into this tutorial, but for now, let's start with some + basics. + */ |