Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active May 6, 2023 15:40
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/cdc56b146782d2ff9ab34e15ec0c58e9 to your computer and use it in GitHub Desktop.
Save dacr/cdc56b146782d2ff9ab34e15ec0c58e9 to your computer and use it in GitHub Desktop.
ZIO live session - Hello world / published by https://github.com/dacr/code-examples-manager #7d6e7858-f20b-43da-a914-50027a61af79/ab0100387562b7b0a8b2d5ede9785dfdf24b3923
// summary : ZIO live session - Hello world
// keywords : scala, zio, live, demo, 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 : 7d6e7858-f20b-43da-a914-50027a61af79
// created-on : 2021-09-26T16:27:18+02: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.*
println("Hello world !")
// ---------------------------
val logic1 = ZIO.attempt(println("Hello world!"))
logic1.unsafeRun
// ---------------------------
val logic2 = Console.printLine("Hello world!")
logic2.unsafeRun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment