Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active May 25, 2024 10:19
Show Gist options
  • Save dacr/890ecb60b2f2fa647b16ead48c5f7d72 to your computer and use it in GitHub Desktop.
Save dacr/890ecb60b2f2fa647b16ead48c5f7d72 to your computer and use it in GitHub Desktop.
ZIO learning - defining and injecting a custom very basic layer into the environment / published by https://github.com/dacr/code-examples-manager #2e6b18e2-4971-407d-8556-3a62a0aaf218/e6d6a3b5667b68dc36387edd0065b52f3c847db1
// summary : ZIO learning - defining and injecting a custom very basic layer into the environment
// 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 : 2e6b18e2-4971-407d-8556-3a62a0aaf218
// created-on : 2021-03-27T08:57:03+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: ZIO[String, Exception, Unit] = for {
env <- ZIO.environment[String]
name = env.get
_ <- Console.printLine(s"Hello $name !")
} yield ()
// -------------------------------------------------------------
logic.provideLayer(ZLayer.succeed("world")).unsafeRun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment