Sandwich!
This commit is contained in:
parent
477446bc39
commit
43b6a3f51f
1 changed files with 11 additions and 1 deletions
|
@ -1,8 +1,18 @@
|
|||
package org.bm00.`data-accessor`
|
||||
|
||||
import jexer.TApplication
|
||||
import java.util.*
|
||||
|
||||
class Application : TApplication(BackendType.SWING) {
|
||||
init {
|
||||
ProgramWindow(this)
|
||||
}
|
||||
}
|
||||
|
||||
@Throws(Exception::class)
|
||||
fun main(args: Array<String>) {
|
||||
Runtime.getRuntime().exec("touch /home/limepot/Desktop/hello.world")
|
||||
Runtime.getRuntime().exec("echo Hello-World")
|
||||
Config()
|
||||
val app = Application()
|
||||
app.run()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue