summaryrefslogtreecommitdiff
path: root/docs/examples/mobile/sort.scala
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/mobile/sort.scala')
-rw-r--r--docs/examples/mobile/sort.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/examples/mobile/sort.scala b/docs/examples/mobile/sort.scala
deleted file mode 100644
index b0bfe43a54..0000000000
--- a/docs/examples/mobile/sort.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package examples.mobile
-
-import java.net._
-import scala.mobile._
-
-
-object sort extends Application {
- val url = new URL("http://scala.epfl.ch/classes/examples.jar")
-
- val location = new Location(url)
- val obj = location create "examples.sort"
- val ar = Array(6, 2, 8, 5, 1)
- obj[Array[Int], Unit]("println")(ar)
- obj[Array[Int], Unit]("sort")(ar)
- obj[Array[Int], Unit]("println")(ar)
- Console.println
-}