Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active May 6, 2023 15:39
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/0a1f770627e8ba6b616a9169e62ad810 to your computer and use it in GitHub Desktop.
Save dacr/0a1f770627e8ba6b616a9169e62ad810 to your computer and use it in GitHub Desktop.
ZIO learning - hello world with repeat / published by https://github.com/dacr/code-examples-manager #37e78854-2ed4-4980-9e3c-0d16b0f64788/f5327a8340e0888e50c86f91ba93208bb3025d0b
// summary : ZIO learning - hello world with repeat
// keywords : scala, zio, learning, pure-functional, helloworld, @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 : 37e78854-2ed4-4980-9e3c-0d16b0f64788
// created-on : 2021-03-25T21:07:34+01: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.*
val logic = Console.printLine("Hello world !")
val repeatedLogic = logic.repeat(Schedule.recurs(1))
repeatedLogic.unsafeRun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment