work in progress on compiler unification between cli and plugin

This commit is contained in:
Alex Tkachman
2011-12-27 17:36:37 +02:00
parent 4272dafc36
commit 725bebc23f
43 changed files with 469 additions and 202 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import kotlin.modules.*
val modules = module("smoke") {
source files "Smoke.kt"
source files "src/Smoke.kt"
testSource files "test/SmokeTest.kt"
jar name System.getProperty("java.io.tmpdir") + "/smoke.jar"
}
@@ -0,0 +1,9 @@
import std.io
import junit.framework.*
class SmokeTest() : TestCase() {
fun testMe() {
println("test")
}
}