summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-03-23 11:46:03 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-03-27 09:39:44 -0400
commit8948f80e78b9fe08cc7e2fc5c97f37df78e95a08 (patch)
tree8c8a2ce01afc1effd7de38f0a4e977bd693a0ab4 /docs
parente56e48ca3a60122697ebba47ed3948fbe0be92c5 (diff)
downloadscala-8948f80e78b9fe08cc7e2fc5c97f37df78e95a08.tar.gz
scala-8948f80e78b9fe08cc7e2fc5c97f37df78e95a08.tar.bz2
scala-8948f80e78b9fe08cc7e2fc5c97f37df78e95a08.zip
Updated README for latest installations
Diffstat (limited to 'docs')
-rw-r--r--docs/README14
1 files changed, 4 insertions, 10 deletions
diff --git a/docs/README b/docs/README
index bcc7108399..6af633444d 100644
--- a/docs/README
+++ b/docs/README
@@ -2,8 +2,7 @@
Scala Software Distributions
----------------------------
-- scala-<major>.<minor>.<patch>.tar.bz2 Unix distribution
-- scala-<major>.<minor>.<patch>.tar.gz Unix distribution
+- scala-<major>.<minor>.<patch>.tgz Unix distribution
- scala-<major>.<minor>.<patch>.zip Windows distribution
The standard distributions require Java 1.5 or above. If you don't
@@ -32,15 +31,10 @@ directly accessible.
You may test the distribution by running the following commands:
-$ ./bin/sbaz install scala-devel-docs
-$ ./bin/scalac doc/scala-devel-docs/examples/sort.scala
-$ ./bin/scala examples.sort
-[6,2,8,5,1]
-[1,2,5,6,8]
$ ./bin/scala
-scala> examples.sort.main(null)
-[6,2,8,5,1]
-[1,2,5,6,8]
+scala> Array(4,3,2,1).sorted
+res0: Array[Int] = Array(1, 2, 3, 4)
+
scala>:quit
$