Sandwich!

This commit is contained in:
nelle 2024-02-16 02:50:47 -07:00
parent 477446bc39
commit 43b6a3f51f

View file

@ -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()
}