27 lines
308 B
Markdown
27 lines
308 B
Markdown
|
|
## Compile the Kotlin Example
|
|
|
|
```console
|
|
./bld compile
|
|
```
|
|
|
|
## Run the Example
|
|
|
|
```console
|
|
./bld run
|
|
```
|
|
|
|
## Run the Tests
|
|
|
|
```console
|
|
./bld test
|
|
```
|
|
|
|
## Build the documentation with [Dokka](https://github.com/Kotlin/dokka)
|
|
|
|
```console
|
|
./bld javadoc
|
|
./bld dokka-html
|
|
./bld dokka-gfm
|
|
./bld dokka-jekyll
|
|
```
|