Last active
February 3, 2026 20:21
-
-
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/d3dc733b1b7e532c4d46950509701e55ce9a8b5e
This file contains hidden or 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 - 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 License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // 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