Ein Kotlin-Kurs, der innerhalb der Programmierrunde durchgeführt wird.
Go to file
p1ng0ut fa1a9b75fc Merge pull request 'Programming example sum of squares' (#5) from 5-changes-from-2022-02-13 into main
Reviewed-on: #5
2023-02-20 19:35:03 +01:00
.idea Initial commit 2023-01-22 15:27:44 +01:00
docs Add variable declaration slides 2023-02-01 22:45:01 +01:00
gradle/wrapper Initial commit 2023-01-22 15:27:44 +01:00
src Programming example sum of squares 2023-02-20 19:33:57 +01:00
.gitignore Initial commit 2023-01-22 15:27:44 +01:00
README.md Add variable declaration slides 2023-02-01 22:45:01 +01:00
build.gradle.kts Initial commit 2023-01-22 15:27:44 +01:00
gradle.properties Initial commit 2023-01-22 15:27:44 +01:00
gradlew Initial commit 2023-01-22 15:27:44 +01:00
gradlew.bat Initial commit 2023-01-22 15:27:44 +01:00
reveal.json Add README and slides 2023-01-22 15:56:50 +01:00
settings.gradle.kts Initial commit 2023-01-22 15:27:44 +01:00

README.md

Dezentrale Kotlin Course

Build The Documentation

This repository contains some examples and slides built with reveal-md.js. To view the slides, the following command must be executed with the node package manager (npm) 1:

npm install -g reveal-md

To be able to execute the command afterwards, we have to make the path known. This can be done either once with an

export PATH=<path_to_reval_md_bin_path>:$PATH

or by adding this path to ~/.profile. When this is done, you can execute the command:

reveal-md docs/slides.md -w

Kotlin Native Build

To compile this project natively, you have to go to the current Kotlin release page (currently version 1.8.0) and download the distribution that fits your operating system (you have to scroll down a bit).

kotlinc-native src/nativeMain/kotlin/Main.kt -o build/Main

  1. A tutorial for the installation can be found at the link above. ↩︎