summaryrefslogtreecommitdiff
path: root/docs/README
blob: f239cc33952023b6bce09bc3e19b3759db5ce96d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Scala Software Distributions
----------------------------

- scala-<major>.<minor>.<patch>.tar.bz2     Unis distribution
- scala-<major>.<minor>.<patch>.tar.gz      Unix distribution
- scala-<major>.<minor>.<patch>.zip         Windows distribution

The standard distributions require Java 1.4.x or above. If you don't
know which version of Java you have, run the command "java -version".


Scala Tools
-----------

- scalac      Scala compiler
- scaladoc    Scala API documentation generator
- scalaint    Scala interactive interpreter
- scalap      Scala classfile decoder 

Run the command "scalac -help" to display the list of available
compiler options.


Install on Unix
---------------

Untar the archive. All Scala tools are located in the directory "bin".
Adding that directory to the PATH variable will make the Scala commands
directly accessible.

You may test the distribution by running the following commands:

$ ./bin/scalac share/doc/scala/examples/sort.scala
$ ./bin/scala examples.sort
[6,2,8,5,1]
[1,2,5,6,8]
$ ./bin/scalaint
scala> examples.sort.main(null)
[6,2,8,5,1]
[1,2,5,6,8]
scala>:quit
$


Install on Windows
------------------

Unzip the archive. All Scala tools are located in the "bin" directory.
Adding that directory to the PATH variable will make the Scala commands
directly accessible.

On Windows 95/98/Me, you must define the environment variable SCALA_HOME
to point to the home directory of the Scala distribution to run any of
these tools. This can be done by adding the following command to your
AUTOEXEC.BAT file and then rebooting your machine.

set SCALA_HOME=<install-directory>\scala-YYYYMMDD-hhmmss

On Windows NT/2000/XP, you do not need to define any variable in order
for the Scala commands to run correctly.