kotlin
This commit is contained in:
commit
c13163ba00
|
|
@ -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
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
||||||
|
fun main() {
|
||||||
|
println("Hello, World!");
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
all:
|
||||||
|
kotlinc main.kt -include-runtime -d main.jar
|
||||||
|
java -jar main.jar
|
||||||
Loading…
Reference in New Issue