Skip to content

Instantly share code, notes, and snippets.

@softberries
Created February 16, 2019 09:05
Show Gist options
  • Save softberries/217dbdb08fb329b2b45d7e5de5b9120a to your computer and use it in GitHub Desktop.
Save softberries/217dbdb08fb329b2b45d7e5de5b9120a to your computer and use it in GitHub Desktop.
import java.util.concurrent.ThreadLocalRandom
val random: ThreadLocalRandom = ThreadLocalRandom.current()
(1 to 100).foreach(i => println(random.nextLong(1,10) + " x " + random.nextLong(1,10) + " = ......"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment