Add simple checker tests for scripts

This commit is contained in:
Pavel V. Talanov
2015-11-17 15:05:00 +03:00
parent daa1a08213
commit aebcebe8ca
6 changed files with 75 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
val c = true
if (c) {
2 + 3
}
fun f() {
if (!c) {
3 + 4
}
}