Skip to content

A workshop to learn Kotlin with Spring Boot by implementing the Nim game.

Notifications You must be signed in to change notification settings

holisticon/kotlin-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aufgabe 1 — Hallo Welt

package com.example.demo

@SpringBootApplication
open class Application

fun main(args: Array<String>) {
    runApplication<Application>(*args)
    println("Hallo Welt")
}
  1. Erzeuge die obige Klasse im richtigen Package
  2. Starte die App: mvn spring-boot:run
  3. Du solltest "Hallo Welt" auf der Konsole sehen

Kotlin Doku: https://kotlinlang.org/docs/reference/basic-syntax.html

About

A workshop to learn Kotlin with Spring Boot by implementing the Nim game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published