1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 09:14:39 +02:00

Merge pull request #1802 from juusaw/patch-3

[scala/eng] Added Java import to misc
This commit is contained in:
Geoff Liu
2016-01-06 14:56:09 -07:00

View File

@@ -621,6 +621,9 @@ import scala.collection.immutable.{List => ImmutableList}
// Import all classes, except some. The following excludes Map and Set:
import scala.collection.immutable.{Map => _, Set => _, _}
// Java classes can also be imported. Scala syntax can be used
import java.swing.{JFrame, JWindow}
// Your programs entry point is defined in an scala file using an object, with a
// single method, main:
object Application {