zio-by-example icon indicating copy to clipboard operation
zio-by-example copied to clipboard

Source code for "ZIO by example" blog post.

ZIO by example

Source code for "ZIO by example" blog post.

  • Hello World
  • 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.