All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kennycason.run.Run.kt Maven / Gradle / Ivy

The newest version!
package com.kennycason.run

import com.kennycason.run.commands.CommandRunner

/**
 * Created by kenny on 5/18/16.
 */
fun main(commands : Array) {
    try {
        CommandRunner().run(commands.asList())
    } catch (e: RuntimeException) {
        println(e.message)
        //e.printStackTrace()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy