Remove obsolete codegen test data

This commit is contained in:
Alexander Udalov
2014-12-29 18:46:11 +03:00
parent 7668f44655
commit 6cd6704bcf
13 changed files with 19 additions and 91 deletions
@@ -0,0 +1,9 @@
fun box(): String {
var bottles = 99
while (bottles > 0) {
// System.out.println("bottles of beer on the wall");
bottles -= 1
bottles--
}
return if (bottles == -1) "OK" else "Fail $bottles"
}