Last active
May 25, 2024 10:20
-
-
Save dacr/d37a89444ca95f59f40ece7a074db7dc to your computer and use it in GitHub Desktop.
ZIO learning - hello world shortest / published by https://github.com/dacr/code-examples-manager #3cbb7410-f584-436e-b4e9-95e8073ae730/e412ce2c7a0371fa2ba54a2804003822767631c6
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 - hello world shortest | |
// 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 : 3cbb7410-f584-436e-b4e9-95e8073ae730 | |
// 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.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 !") | |
logic.unsafeRun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment