Added more Dokka options
This commit is contained in:
parent
2e9e2bc826
commit
79254d9642
6 changed files with 298 additions and 36 deletions
|
@ -1,10 +1,25 @@
|
|||
package com.example
|
||||
|
||||
/**
|
||||
* Example class.
|
||||
*/
|
||||
class Example {
|
||||
/**
|
||||
* Message property.
|
||||
*/
|
||||
val message: String
|
||||
/**
|
||||
* Returns the message property.
|
||||
*/
|
||||
get() = "Hello World!"
|
||||
|
||||
/**
|
||||
* Companion object.
|
||||
*/
|
||||
companion object {
|
||||
/**
|
||||
* Main function.
|
||||
*/
|
||||
@JvmStatic
|
||||
fun main(args: Array<String>) {
|
||||
println(Example().message)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue