Last active
May 25, 2024 10:18
-
-
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/52ac28bbb16ca4509f2cd496e0d546f5bf5395a7
This file contains 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 - 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.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