├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main └── kotlin │ └── io │ └── github │ └── rchowell │ └── dotlin │ ├── Dot.kt │ └── example │ └── Example.kt └── test └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "dotlin" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/io/github/rchowell/dotlin/Dot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/src/main/kotlin/io/github/rchowell/dotlin/Dot.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/github/rchowell/dotlin/example/Example.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchowell/Dotlin/HEAD/src/main/kotlin/io/github/rchowell/dotlin/example/Example.kt -------------------------------------------------------------------------------- /src/test/.gitkeep: -------------------------------------------------------------------------------- 1 | Well this is embarrassing 2 | --------------------------------------------------------------------------------