module 1 lesson 1 - Hello World!

This commit is contained in:
Александр Веденёв
2024-11-30 01:31:48 +07:00
parent 91f863967d
commit 8a5001af37
10 changed files with 417 additions and 0 deletions

10
settings.gradle.kts Normal file
View File

@ -0,0 +1,10 @@
pluginManagement {
val kotlinVersion: String by settings
plugins {
kotlin("jvm") version kotlinVersion
}
}
rootProject.name = "otus-kotlin-developer"
include("m1l1-first")