summaryrefslogtreecommitdiff
path: root/test/files/cldc
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-11-20 18:35:24 +0000
committermichelou <michelou@epfl.ch>2007-11-20 18:35:24 +0000
commitc8fab9ec7d779b4adcebab6ae6294ee7be37a5d2 (patch)
treea81773eb7a15606a66a4ca1eecf73b1710a5338f /test/files/cldc
parentc5ef189ab9f5584214370ac6c59a00c062094a90 (diff)
downloadscala-c8fab9ec7d779b4adcebab6ae6294ee7be37a5d2.tar.gz
scala-c8fab9ec7d779b4adcebab6ae6294ee7be37a5d2.tar.bz2
scala-c8fab9ec7d779b4adcebab6ae6294ee7be37a5d2.zip
splitted CLDC library (un-/preverified)
Diffstat (limited to 'test/files/cldc')
-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