Scratch: tests for repl execution

This commit is contained in:
Natalia Selezneva
2017-12-27 12:00:16 +03:00
parent 1a84c05db2
commit dda0b38fb9
17 changed files with 204 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
arrayListOf(1, 5, 7).map { it * 2 } // RESULT: 2
.filter { it < 10 }
.find { it == 2 }