Last active
May 25, 2024 10:18
-
-
Save dacr/5c316bc64b56b4b7a333402de65e1f53 to your computer and use it in GitHub Desktop.
ZIO learning - return distinct random numbers / published by https://github.com/dacr/code-examples-manager #48d37087-114f-4c7d-a932-69257a54390e/366e2fdb53030a9194e9b7d2c94077f633993555
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// summary : ZIO learning - return distinct random numbers | |
// keywords : scala, zio, learning, pure-functional, @testable | |
// publish : gist | |
// authors : David Crosson | |
// license : Apache NON-AI License Version 2.0 (https://raw.githubusercontent.com/non-ai-licenses/non-ai-licenses/main/NON-AI-APACHE2) | |
// id : 48d37087-114f-4c7d-a932-69257a54390e | |
// created-on : 2021-04-02T16:22:22+02:00 | |
// managed-by : https://github.com/dacr/code-examples-manager | |
// run-with : scala-cli $file | |
// --------------------- | |
//> using scala "3.4.2" | |
//> using dep "dev.zio::zio:2.0.13" | |
//> using dep "fr.janalyse::zio-worksheet:2.0.13.0" | |
// --------------------- | |
import zio.*, zio.worksheet.* | |
val randomLogic = for { | |
n <- ZIO.iterate(Set.empty[Long])(_.size < 5)(s => Random.nextLongBetween(1, 20).map(s + _)) | |
_ <- Console.printLine("Chosen numbers : " + n.toList.sorted.mkString(", ")) | |
} yield () | |
randomLogic.unsafeRun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment