├── .DS_Store ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── jarRepositories.xml ├── learn-kotlin.iml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main └── kotlin ├── Animals.kt ├── Calculator.kt ├── ControlFlowAndTypeChecks.kt ├── DataClasses.kt ├── DataTypes.kt ├── Functions.kt ├── HelloWorld.kt ├── NullSafety.kt ├── Variables.kt ├── collections ├── Associate.kt ├── Filter.kt ├── Flatten.kt ├── Grouping.kt ├── Iterators.kt ├── Library.kt ├── Map.kt ├── Partition.kt ├── Reduce.kt ├── Sequence.kt ├── SortBy.kt └── Zip.kt └── scope ├── Also.kt ├── Apply.kt ├── Let.kt ├── Run.kt ├── ScopeFunctions.kt └── With.kt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/learn-kotlin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/learn-kotlin.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'learn-kotlin' 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/Animals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/Animals.kt -------------------------------------------------------------------------------- /src/main/kotlin/Calculator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/Calculator.kt -------------------------------------------------------------------------------- /src/main/kotlin/ControlFlowAndTypeChecks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/ControlFlowAndTypeChecks.kt -------------------------------------------------------------------------------- /src/main/kotlin/DataClasses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/DataClasses.kt -------------------------------------------------------------------------------- /src/main/kotlin/DataTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/DataTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/Functions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/Functions.kt -------------------------------------------------------------------------------- /src/main/kotlin/HelloWorld.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | println("Hello World!") 3 | } -------------------------------------------------------------------------------- /src/main/kotlin/NullSafety.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/NullSafety.kt -------------------------------------------------------------------------------- /src/main/kotlin/Variables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/Variables.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Associate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Associate.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Filter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Filter.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Flatten.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Flatten.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Grouping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Grouping.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Iterators.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Iterators.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Library.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Library.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Map.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Partition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Partition.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Reduce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Reduce.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Sequence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Sequence.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/SortBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/SortBy.kt -------------------------------------------------------------------------------- /src/main/kotlin/collections/Zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/collections/Zip.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/Also.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/Also.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/Apply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/Apply.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/Let.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/Let.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/Run.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/Run.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/ScopeFunctions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/ScopeFunctions.kt -------------------------------------------------------------------------------- /src/main/kotlin/scope/With.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyEngel/learn-kotlin/HEAD/src/main/kotlin/scope/With.kt --------------------------------------------------------------------------------