├── LICENSE ├── README-PT.md ├── README-ZH.md ├── README.md ├── assets └── from_java_to_kotlin.png └── others ├── Developer.java ├── Developer.kt ├── JavaExample.java └── KotlinExample.kt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README-PT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/README-PT.md -------------------------------------------------------------------------------- /README-ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/README-ZH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /assets/from_java_to_kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/assets/from_java_to_kotlin.png -------------------------------------------------------------------------------- /others/Developer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/others/Developer.java -------------------------------------------------------------------------------- /others/Developer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janishar/from-java-to-kotlin/HEAD/others/Developer.kt -------------------------------------------------------------------------------- /others/JavaExample.java: -------------------------------------------------------------------------------- 1 | public class JavaExample { 2 | 3 | } -------------------------------------------------------------------------------- /others/KotlinExample.kt: -------------------------------------------------------------------------------- 1 | class KotlinExample { 2 | 3 | } --------------------------------------------------------------------------------