Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created November 28, 2014 18:10
Show Gist options
  • Save KamilLelonek/6266b1a4d5d5c05d7cb2 to your computer and use it in GitHub Desktop.
Save KamilLelonek/6266b1a4d5d5c05d7cb2 to your computer and use it in GitHub Desktop.
Using JavaConversions in Scala
scala> import scala.collection.JavaConversions._
import scala.collection.JavaConversions._
scala> val javaList: java.util.List[Int] = scalaList
javaList: java.util.List[Int] = [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment