Initial commit

This commit is contained in:
2025-09-17 14:25:27 -03:00
parent 3332749ee0
commit e97df669a4
14 changed files with 91 additions and 28 deletions

View File

@@ -3,7 +3,5 @@ package dev.carlosmartino.triplogic
class Greeting {
private val platform = getPlatform()
fun greet(): String {
return "Hello, ${platform.name}!"
}
}
fun greet(): String = "Hello, ${platform.name}!"
}