複数行に分かれている内容をカンマ区切りで1行にまとめる。
import scala.io.Source
object read {
def main(args: Array[String]):Unit = {
val filename= args(0)
val s = Source.fromFile(filename)
try {
println(s.getLines.toList.mkString(","))
} finally {
s.close
}
}
}