com.twitter.penguin.korean.tools.Runnable.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of korean-text Show documentation
Show all versions of korean-text Show documentation
Scala library to process Korean text
package com.twitter.penguin.korean.tools
/**
* Created by hohyonryu on 1/3/15.
*/
abstract class Runnable {
def main(args: Array[String]) {
run
}
def run
}