Small refactoring.

master
Tomasz Półgrabia 2025-01-20 22:05:42 +01:00
parent 48a1db31bc
commit 5e95d24fa7
4 changed files with 16 additions and 4 deletions

View File

@ -0,0 +1,3 @@
# Basic kotlin project
The goal was to test how easy / hard is to write kotlin in vim :-).

View File

@ -12,5 +12,5 @@ kotlin {
tasks.register('runApp', JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = "ProgramKt"
mainClass = "pl.polgrabia.demos.kotlin.ProgramKt"
}

View File

@ -1,3 +0,0 @@
fun main() {
println("Hello World!!!")
}

View File

@ -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")
}