au.csiro.variantspark.work.ObjectTest.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of variant-spark_2.11 Show documentation
Show all versions of variant-spark_2.11 Show documentation
Genomic variants interpretation toolkit
The newest version!
package au.csiro.variantspark.work
object ObjectTest {
def main(argv: Array[String]) {
println("Hello")
val x = List("cc", "yy", "xx")
x match {
case a :: b :: _ => println("xxx")
}
}
}