Added tests

This commit is contained in:
Igor Chevdar
2017-03-07 16:44:53 +03:00
parent 776f4c4b7f
commit 1a8ce13067
7 changed files with 100 additions and 0 deletions
@@ -0,0 +1,8 @@
var x = 42
fun main(args: Array<String>) {
val p = ::x
p.set(117)
println(x)
println(p.get())
}