aboutsummaryrefslogtreecommitdiff
path: root/sandbox/scalajs/src/hello.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-11-20 00:02:50 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:08 +0100
commitc3eb841ce8ae349d9820dbf6c18884955e74254e (patch)
tree5e82e22a6f0e8245c11a6db81cb9647106a14bde /sandbox/scalajs/src/hello.scala
parentda1bfe392c638fc03181e0d6b51eb41dbdcce548 (diff)
downloaddotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.tar.gz
dotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.tar.bz2
dotty-c3eb841ce8ae349d9820dbf6c18884955e74254e.zip
Make every project use the new directory structure
Diffstat (limited to 'sandbox/scalajs/src/hello.scala')
-rw-r--r--sandbox/scalajs/src/hello.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/sandbox/scalajs/src/hello.scala b/sandbox/scalajs/src/hello.scala
new file mode 100644
index 000000000..bd4aa8cc5
--- /dev/null
+++ b/sandbox/scalajs/src/hello.scala
@@ -0,0 +1,15 @@
+package hello
+
+import scala.scalajs.js
+
+trait MyTrait {
+ val x = 5
+ def foo(y: Int) = x
+}
+
+object world extends js.JSApp with MyTrait {
+ def main(): Unit = {
+ println("hello dotty.js!")
+ println(foo(4))
+ }
+}