summaryrefslogtreecommitdiff
path: root/test/files/cldc/randoms.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/cldc/randoms.scala')
-rw-r--r--test/files/cldc/randoms.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/cldc/randoms.scala b/test/files/cldc/randoms.scala
index b9f46250c9..5d3380fef9 100644
--- a/test/files/cldc/randoms.scala
+++ b/test/files/cldc/randoms.scala
@@ -9,8 +9,8 @@ class Test extends MIDlet with CommandListener {
val mainForm = new Form("randoms")
mainForm append "Welcome to the world of MIDlets!"
mainForm append "(build with Scala)"
- //val rnd = new Random
- //for (i <- 0 until 10) mainForm append rnd.nextInt.toString
+ val rnd = new Random
+ for (i <- 0 until 10) mainForm append rnd.nextInt.toString
val exitCommand = new Command("Exit", Command.EXIT, 0)
mainForm addCommand exitCommand