Skip to content

Instantly share code, notes, and snippets.

@abircse
Last active April 17, 2021 16:29
Show Gist options
  • Save abircse/3ebaba5077f69140a8037bbf3282d589 to your computer and use it in GitHub Desktop.
Save abircse/3ebaba5077f69140a8037bbf3282d589 to your computer and use it in GitHub Desktop.
RandomCodeGeneratorInNumberUtils
object RandomIntGenerator {
fun generate(): Int {
val rnd = Random()
val number = rnd.nextInt(999999)
return number
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment