Ant task - CompileEnvironment is used + "buildToolsTest" verifies <java> output

This commit is contained in:
Evgeny Goldin
2012-01-15 22:12:46 +02:00
parent 823852cc6c
commit 28267606e6
10 changed files with 112 additions and 26 deletions
+9
View File
@@ -0,0 +1,9 @@
class Greeter(val name : String) {
fun greet() {
System.out?.println("Hello, ${name}!");
}
}
fun main(args : Array<String>) {
Greeter(args[0]).greet()
}