summaryrefslogtreecommitdiff
path: root/doc/man/man1/scalaint.1
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man1/scalaint.1')
-rw-r--r--doc/man/man1/scalaint.1127
1 files changed, 0 insertions, 127 deletions
diff --git a/doc/man/man1/scalaint.1 b/doc/man/man1/scalaint.1
deleted file mode 100644
index 5f67995723..0000000000
--- a/doc/man/man1/scalaint.1
+++ /dev/null
@@ -1,127 +0,0 @@
-.\" ##########################################################################
-.\" # __ #
-.\" # ________ ___ / / ___ Scala On-line Manual Pages #
-.\" # / __/ __// _ | / / / _ | (c) 2002-2005, LAMP/EPFL #
-.\" # __\ \/ /__/ __ |/ /__/ __ | #
-.\" # /____/\___/_/ |_/____/_/ | | http://scala.epfl.ch/ #
-.\" # |/ #
-.\" ##########################################################################
-.\"
-.\" Process this file with nroff -man scalaint.1
-.\"
-.TH scalaint 1 "April 29, 2005" "version 0.1" "USER COMMANDS"
-.\"
-.\" ################################# NAME ###################################
-.\"
-.SH NAME
-scalaint \- Interactive interpreter for the Scala language
-.\"
-.\" ############################### SYNOPSIS #################################
-.\"
-.SH SYNOPSIS
-\fBscalaint\fR [ <\fIoptions\fR> ] <\fIsource files\fR> [ -- <\fImodule\fR> [ <\fIargs\fR> ] ]
-.\"
-.\" ############################### PARAMETERS ###############################
-.\"
-.SH PARAMETERS
-.TP
-<\fIoptions\fR>
-Command line options. See \fBOPTIONS\fR below.
-.TP
-<\fIsource files\fR>
-One or more source files to be interpreted (such as MyClass.scala).
-.TP
-<\fImodule\fR>
-Name of the Scala object containing the main function.
-.TP
-<\fIargs\fR>
-Program arguments passed to the main function.
-.\"
-.\" ############################## DESCRIPTION ###############################
-.\"
-.SH DESCRIPTION
-The \fBscalaint\fR utility starts an interpreter shell and executes the
-specified Scala application. It does this by loading the class <\fImodule\fR>
-and invoking that class’s \fBmain\fR method. The method must have the
-following signature:
-.PP
- \fBdef\fR main(args: Array[String]): Unit
-.PP
-The method must not return any value, and it must accept a String array as a
-parameter.
-.PP
-The Scala interpreter searches for the startup class, and other classes used,
-in three sets of locations: the bootstrap class path, the installed
-extensions, and the user class path.
-.\"
-.\" ############################### OPTIONS ##################################
-.\"
-.SH OPTIONS
-The \fBscalaint\fR command supports the following options
-.TP
-\fB\-c\fR <\fIstring\fR>
-Evaluate <\fIstring\fR> and print result.
-.TP
-\fB\-interactive\fR
-Start interpreter in interactive mode.
-.TP
-\fB\-nologo\fR
-Print no logo at interactive interpreter start.
-.TP
-\fB\-emacs\fR
-Use Emacs editing mode.
-.TP
-\fB\-g\fR
-Generate debugging info.
-.TP
-\fB\-nowarn\fR
-Generate no warnings.
-.TP
-\fB\-classpath\fR <\fIpath\fR>
-Specify where to find user class files (on Unix-based systems
-a colon-separated list of paths, on Windows-based systems, a
-semicolon-separate list of paths).
-.\"
-.\" ############################### EXAMPLES #################################
-.\"
-.SH EXAMPLES
-.TP
-Run a Scala program located in the current directory
-.BR
-\fBscalaint\fR -nologo HelloWorld.scala -- HelloWorld
-.PP
-.\"
-.\" ############################# EXIT STATUS ################################
-.\"
-.SH "EXIT STATUS"
-\fBscalaint\fR returns a zero exist status if it succeeds. Non zero is
-returned in case of failure.
-.\"
-.\" ############################## AUTHOR(S) #################################
-.\"
-.SH AUTHOR
-Written by Stephane Micheloud.
-.\"
-.\" ################################ BUGS ####################################
-.\"
-.SH "REPORTING BUGS"
-Report bugs to <scala@lists.epfl.ch>.
-.\"
-.\" ############################# COPYRIGHT ##################################
-.\"
-.SH COPYRIGHT
-Copyright \(co 2002-2005 LAMP/EPFL
-.PP
-This is free software; see the distribution for copying conditions. There is
-NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-.\"
-.\" ############################### SEE ALSO #################################
-.\"
-.SH "SEE ALSO"
-.BR scala(1),
-.BR scalac(1),
-.BR scaladoc(1),
-.BR scalarun(1)
-.\"
-.\" ##########################################################################
-.\" $Id$