Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active February 3, 2026 20:23
Show Gist options
  • Select an option

  • Save dacr/0a1f770627e8ba6b616a9169e62ad810 to your computer and use it in GitHub Desktop.

Select an option

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/d606287e5bb8e6ba97cdee6fa47a7106158b1e93
// summary : ZIO learning - hello world with repeat
// keywords : scala, zio, learning, pure-functional, helloworld, @testable
// publish : gist
// authors : David Crosson
// license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)
// 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.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 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