Scala 언어 소스: /* * Filename: testHexView_03.scala * * Purpose: Show the hexadecimal values of the given file. * * Compile: scalac -deprecation -d . testHexView_03.scala * Execute: scala testHexView_03 [filename] * * Date: 2013. 8. 18. */ import java.io._ object testHexView_03 { def printUsage() { println("Usage: scala testHexView_03 [filename]") } def toHex(n: Int) : String = { var s = "" var x1 ..