commit c13163ba00de92a01a8fd68d2dd09149d5726027 Author: tuz Date: Sun Feb 8 01:25:33 2026 -0500 kotlin diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..981ec3e --- /dev/null +++ b/readme.md @@ -0,0 +1,27 @@ +https://kotlinlang.org/docs/getting-started.html#choose-your-kotlin-use-case + +https://www.jetbrains.com/idea/download/?section=windows + + +https://github.com/JetBrains/kotlin/releases/tag/v2.3.10 + + +https://kotlinlang.org/docs/command-line.html + +https://adoptium.net/temurin/releases + +https://github.com/NationalSecurityAgency/ghidra + +https://adoptium.net/temurin/releases + + +kotlinc + +kotlin-compiler-2.3.10.zip + + + +https://developer.android.com/studio + + +https://www.jetbrains.com/idea/download/?section=windows diff --git a/world/main.jar b/world/main.jar new file mode 100644 index 0000000..febcd66 Binary files /dev/null and b/world/main.jar differ diff --git a/world/main.kt b/world/main.kt new file mode 100644 index 0000000..ff18e17 --- /dev/null +++ b/world/main.kt @@ -0,0 +1,3 @@ +fun main() { + println("Hello, World!"); +} diff --git a/world/makefile b/world/makefile new file mode 100644 index 0000000..3493246 --- /dev/null +++ b/world/makefile @@ -0,0 +1,3 @@ +all: + kotlinc main.kt -include-runtime -d main.jar + java -jar main.jar