Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active May 6, 2023 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacr/5c4a9250555ba5b20c9edf2a79a376db to your computer and use it in GitHub Desktop.
Save dacr/5c4a9250555ba5b20c9edf2a79a376db to your computer and use it in GitHub Desktop.
ZIO learning - virtual sleeping / published by https://github.com/dacr/code-examples-manager #763ff5fd-a557-42b1-9d10-6706027a95af/8fd6f75a03bb0018666ba45f057f403cda949765
// summary : ZIO learning - virtual sleeping
// 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 : 763ff5fd-a557-42b1-9d10-6706027a95af
// 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.2.2"
//> using dep "dev.zio::zio:2.0.13"
//> using dep "fr.janalyse::zio-worksheet:2.0.13.0"
// ---------------------
import zio.*, zio.worksheet.*, zio.Duration.*
val logic = for {
_ <- Console.printLine("a")
_ <- Clock.sleep(200.millis)
_ <- Console.printLine("b")
_ <- Clock.sleep(200.millis)
_ <- Console.printLine("-")
} yield ()
// -------------------------------------------------------------
logic.repeatN(5).unsafeRun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment