Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ioleo/zio-by-example

Source code for "ZIO by example" blog post.
https://github.com/ioleo/zio-by-example

functional-programming scala zio

Last synced: 3 months ago
JSON representation

Source code for "ZIO by example" blog post.

Awesome Lists containing this project

README

        

# ZIO by example

Source code for "ZIO by example" blog post.

- [Hello World](#hello-world)
- [Tic-Tac-Toe](#tic-tac-toe)

## Hello World

The most basic of all applications. Prints "Hello world!" to the console.
Included to show how to interpret the program description written in ZIO.

## Tic-Tac-Toe

Simple command line application. Turn-based game with global state, modular design and modal interface.
Included to show how to compose program from small, easily testable modules.