Added examples README

This commit is contained in:
Erik C. Thauvin 2023-11-23 13:07:06 -08:00
parent a87526a0aa
commit 72f8031c3c
2 changed files with 22 additions and 2 deletions

View file

@ -23,7 +23,7 @@ public void compile() throws IOException {
} }
``` ```
```text ```console
./bld compile ./bld compile
``` ```
@ -47,7 +47,7 @@ public void javadoc() throws ExitStatusException, IOException, InterruptedExcept
} }
``` ```
```text ```console
./bld javadoc ./bld javadoc
``` ```

20
examples/README.md Normal file
View file

@ -0,0 +1,20 @@
## Compile the Kotlin Example
```console
./bld compile
```
## Run the Example
```console
./bld run
```
## Build the documentation with Dokka
```console
./bld javadoc
./bld dokka-html
./bld dokka-gfm
./bld dokka-jekyll
```