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

https://github.com/molnarmark/hostler

A lightweight terminal coloring library for Pony
https://github.com/molnarmark/hostler

pony pony-language ponylang terminal terminal-colors

Last synced: about 2 months ago
JSON representation

A lightweight terminal coloring library for Pony

Awesome Lists containing this project

README

        

# Hostler

Hostler is a extremely lightweight terminal coloring library for [Pony](http://ponylang.org).
Hostler is a port of [Colorize](http://github.com/molnarmark/colorize) for Nim.

# Usage
```pony
actor Main
new create(env: Env) =>
let greetings = Hostler("Greetings, ").>fgYellow().>bold()
let hostler = Hostler("this is Hostler!").>bgLightBlue().>fgBlue().>underline()

env.out.print(greetings + hostler)
```

# License
- [MIT](https://github.com/molnarmark/hostler/blob/master/LICENSE)