Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 341 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 341 Bytes

What is this repository?

Random value generator with Kotlin.

Example.

fun example() {
    Random.int8()       // signed 8bit
    Random.string(32)   // 32 chars.
}

How to Install

// build.gradle
dependencies {
    implementation 'io.github.eaglesakura.static-random:static-random:${replace version}'
}