Kotlin build on Mac
2023. 2. 27. 12:05ㆍProgramming/JAVA, C++, Go, Rust
- 목차
반응형
1. install
brew install kotlin
2. compile
test.kt
fun main() {
println("test");
}
kotlinc-jvm test.kt -include-runtime -d test.jar
3. execute
java -jar test.jar
반응형
'Programming > JAVA, C++, Go, Rust' 카테고리의 다른 글
Go 언어에서 reflect로 필드명과 값 획득 방법 (0) | 2023.06.20 |
---|---|
고 언어 (Go lang)에서 값의 스왑 (swap) 방법 (0) | 2023.06.05 |
C++ inline variable (0) | 2023.02.09 |
C++ cast들 (static_cast, reinterpret_cast, dynamic_cast, const_cast) (0) | 2023.02.09 |
C++ emplace_back (0) | 2023.02.03 |