summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-08.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
committerMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
commitefd06d74f1621351c70456478b07a4ace6a9a211 (patch)
tree01ac7505ed4f33582974d4519dc3e33d601614d2 /test/files/run/Course-2002-08.scala
parent85c73ba918913361f925c23469c012096a93fb54 (diff)
downloadscala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.gz
scala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.bz2
scala-efd06d74f1621351c70456478b07a4ace6a9a211.zip
*** empty log message ***
Diffstat (limited to 'test/files/run/Course-2002-08.scala')
-rw-r--r--test/files/run/Course-2002-08.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/files/run/Course-2002-08.scala b/test/files/run/Course-2002-08.scala
index 9cb2bb8701..dad9426d7f 100644
--- a/test/files/run/Course-2002-08.scala
+++ b/test/files/run/Course-2002-08.scala
@@ -5,7 +5,7 @@
import List._;
-module M0 {
+object M0 {
var x: String = "abc";
var count = 111;
@@ -23,7 +23,7 @@ module M0 {
//############################################################################
-module M1 {
+object M1 {
class BankAccount() {
private var balance = 0;
@@ -87,7 +87,7 @@ module M1 {
//############################################################################
-module M2 {
+object M2 {
def while(def condition: Boolean)(def command: Unit): Unit =
if (condition) {
@@ -113,7 +113,7 @@ module M2 {
//############################################################################
-module M3 {
+object M3 {
def power (x: Double, exp: Int): Double = {
var r = 1.0;
@@ -133,7 +133,7 @@ module M3 {
//############################################################################
-module M4 {
+object M4 {
def test = {
for (val i <- range(1, 4)) do { System.out.print(i + " ") };
@@ -145,7 +145,7 @@ module M4 {
//############################################################################
-module M5 {
+object M5 {
type Action = () => Unit;
@@ -579,7 +579,7 @@ class Main() extends CircuitSimulator() {
//############################################################################
-module Test {
+object Test {
def main(args: Array[String]): Unit = {
M0.test;
M1.test;