Skip to content

Instantly share code, notes, and snippets.

@dariathecracker
Last active June 4, 2020 11:42
Show Gist options
  • Save dariathecracker/1f4cc7247ba1a08a84920704d582314a to your computer and use it in GitHub Desktop.
Save dariathecracker/1f4cc7247ba1a08a84920704d582314a to your computer and use it in GitHub Desktop.
Clearing the console
package ioleo.tictactoe.cli
import zio.ZIO
import zio.macros.annotation.{accessible, mockable}
@accessible(">")
@mockable
trait Terminal {
val terminal: Terminal.Service[Any]
}
object Terminal {
trait Service[R] {
val getUserInput: ZIO[R, Nothing, String]
def display(frame: String): ZIO[R, Nothing, Unit]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment