Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ioleo/zio-by-example
- Owner: ioleo
- Created: 2019-05-01T21:49:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-24T19:15:50.000Z (about 5 years ago)
- Last Synced: 2024-10-04T13:06:36.640Z (4 months ago)
- Topics: functional-programming, scala, zio
- Language: Scala
- Homepage:
- Size: 26.4 KB
- Stars: 23
- Watchers: 6
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-zio - TicTacToe command line game using Module Pattern
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.