Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 491 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 491 Bytes

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