summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorMatthias Zenger <mzenger@gmail.com>2003-09-10 15:57:26 +0000
committerMatthias Zenger <mzenger@gmail.com>2003-09-10 15:57:26 +0000
commite3aa358f3c75445d80cf0fb3bdb636dc6cd683de (patch)
tree0441c093b41a0f0eb812b18533f9a4a2daafbb82 /sources
parent86fa7e45365e1f00b32ca02cc19e0be898cf6dc1 (diff)
downloadscala-e3aa358f3c75445d80cf0fb3bdb636dc6cd683de.tar.gz
scala-e3aa358f3c75445d80cf0fb3bdb636dc6cd683de.tar.bz2
scala-e3aa358f3c75445d80cf0fb3bdb636dc6cd683de.zip
Initial release.
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/Executable.scala48
1 files changed, 48 insertions, 0 deletions
diff --git a/sources/scala/Executable.scala b/sources/scala/Executable.scala
new file mode 100644
index 0000000000..651d5d136d
--- /dev/null
+++ b/sources/scala/Executable.scala
@@ -0,0 +1,48 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+package scala;
+
+
+/** The <code>Executable</code> class can be used to quickly turn objects
+ * into executable programs. Here is an example:
+ * <pre>
+ * object Main with Executable {
+ * Console.println("Hello World!");
+ * }
+ * </pre>
+ * Here, object <code>Main</code> inherits the <code>main</code> method
+ * of <code>Executable</code>. The body of the <code>Main</code> object
+ * defines the main program. This technique does not work if the main
+ * program depends on command-line arguments (which are not accessible
+ * with the technique presented here).
+ *
+ * It is possible to time the execution of objects that inherit from
+ * class <code>Executable</code> by setting the global scala.time property.
+ * Here is an example for benchmarking object <code>Main</code>:
+ * <pre>
+ * java -Dscala.time Main
+ * </pre>
+ *
+ * @author Matthias Zenger
+ * @version 1.0, 10/09/03
+ */
+class Executable {
+
+ /** The time when execution of this program started.
+ */
+ val executionStart: Long = System.currentTimeMillis();
+
+ /** The default main method.
+ */
+ def main(args: Array[String]) = {
+ if (System.getProperty("scala.time") != null)
+ System.out.println("[total " +
+ (System.currentTimeMillis() - executionStart) + "ms]");
+ }
+}