Small refactoring.
parent
48a1db31bc
commit
5e95d24fa7
|
@ -0,0 +1,3 @@
|
||||||
|
# Basic kotlin project
|
||||||
|
|
||||||
|
The goal was to test how easy / hard is to write kotlin in vim :-).
|
|
@ -12,5 +12,5 @@ kotlin {
|
||||||
|
|
||||||
tasks.register('runApp', JavaExec) {
|
tasks.register('runApp', JavaExec) {
|
||||||
classpath = sourceSets.main.runtimeClasspath
|
classpath = sourceSets.main.runtimeClasspath
|
||||||
mainClass = "ProgramKt"
|
mainClass = "pl.polgrabia.demos.kotlin.ProgramKt"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
fun main() {
|
|
||||||
println("Hello World!!!")
|
|
||||||
}
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
package pl.polgrabia.demos.kotlin
|
||||||
|
|
||||||
|
import kotlin.collections.*
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
// val data = listOf(1, 2, 3, 4)
|
||||||
|
val data : Array<Int> = Array(10) { 1 }
|
||||||
|
val s = data.reduceOrNull ({ r,v ->
|
||||||
|
r + v
|
||||||
|
})
|
||||||
|
println("Hello World!!! Sum: $s")
|
||||||
|
}
|
Loading…
Reference in New Issue