KE2: Add trivial build

This commit is contained in:
Ian Lynagh
2024-08-20 15:28:05 +01:00
parent 8322e31148
commit 3c347317e5
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/usr/bin/env python3
import subprocess
subprocess.run(["kotlinc", "src/main/kotlin/KotlinExtractor.kt"])

View File

@@ -0,0 +1,3 @@
fun main(args : Array<String>) {
println("Kotlin Extractor 2 running")
}