Kotlin Uast: Initial implementation

This commit is contained in:
Yan Zhulanow
2016-03-03 17:46:54 +03:00
parent a13a1e1e4a
commit 92d2e7a0a9
60 changed files with 2485 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
class Simple {
val a: String = "text" + "other" + "text"
val b = listOf("A")
fun test() {
System.out.println(5.0f / 2)
}
}