Ant task - <kotlinc module=".."/> support + test

This commit is contained in:
Evgeny Goldin
2012-01-22 20:48:55 +02:00
parent 7356abf447
commit 1030fcf016
5 changed files with 122 additions and 44 deletions
+5
View File
@@ -0,0 +1,5 @@
package Smoke
fun main(args: Array<String>) {
print("${args[0]}|${args[1]}|${args[2]}")
}
+7
View File
@@ -0,0 +1,7 @@
import kotlin.modules.*
fun project() {
module("smoke") {
sources += "Smoke.kt"
}
}