blob: f696242d40ae375ab9d250de7340f1c5522ce4c4 [file] [log] [blame]
package scala.test
// It is just to show how a Scala library can depend on another Scala library.
object OtherLib {
def getMessage(): String = {
return "scala!"
}
}