integration tests: compile and run hello app

This commit is contained in:
Leonid Shalupov
2012-04-22 22:54:13 +04:00
parent 22d601ffcb
commit 40e594668b
5 changed files with 41 additions and 20 deletions
@@ -0,0 +1 @@
Return code: 0
+5
View File
@@ -0,0 +1,5 @@
package Hello
fun main(args : Array<String>) {
System.out?.println("Hello!")
}
@@ -0,0 +1,2 @@
OUT Hello!
Return code: 0