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/b1f9ad48405de9da463393c0d8c20ec7 to your computer and use it in GitHub Desktop.
Save dacr/b1f9ad48405de9da463393c0d8c20ec7 to your computer and use it in GitHub Desktop.
ZIO learning - hello world first / published by https://github.com/dacr/code-examples-manager #cdd09373-998b-41e2-b3c5-b275255ee98c/1c181ebcf776890defeb2a6acedea913efa6d403
// summary : ZIO learning - hello world first
// 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 : cdd09373-998b-41e2-b3c5-b275255ee98c
// created-on : 2021-03-27T17:52:36+01: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.ZIO.*, zio.worksheet.*
val sayHelloApp = succeed(println("Hello world!"))
// ZIO is lazy, nothing is printed at that point, sayHello just describe a computation
sayHelloApp.unsafeRun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment