Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikelborm/kotlin-experiments
https://github.com/nikelborm/kotlin-experiments
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikelborm/kotlin-experiments
- Owner: nikelborm
- Created: 2024-06-19T02:58:31.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-31T17:35:02.000Z (9 days ago)
- Last Synced: 2024-12-31T18:27:02.685Z (9 days ago)
- Language: Kotlin
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kotlin experiments
## Install deps
```bash
sudo pacman -Syu kotlin gradle
```## How to compile
```bash
kotlinc ./main.kt -include-runtime -d ./dist/main.jar
```## Run
```bash
java -jar ./dist/main.jar
kotlinc -script ./main.kts
```## Both
```bash
kotlinc ./main.kt -include-runtime -d ./dist/main.jar && java -jar ./dist/main.jar testArgs
```