Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnnymayodev/tulip
Tulip is a simple Gleam project for adding color to your terminal output. All 256 ANSI colors are supported.
https://github.com/johnnymayodev/tulip
Last synced: about 1 month ago
JSON representation
Tulip is a simple Gleam project for adding color to your terminal output. All 256 ANSI colors are supported.
- Host: GitHub
- URL: https://github.com/johnnymayodev/tulip
- Owner: johnnymayodev
- License: mit
- Created: 2024-05-16T19:33:39.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-05-16T20:22:01.000Z (8 months ago)
- Last Synced: 2024-08-09T22:35:07.756Z (5 months ago)
- Language: Gleam
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tulip
Tulip is a simple Gleam project for adding color to your terminal output. All 256 ANSI colors are supported.
[![Package Version](https://img.shields.io/hexpm/v/tulip)](https://hex.pm/packages/tulip)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/tulip/)```sh
gleam add tulip
```
```gleam
import tulippub fn main() {
tulip.println(213, "Hello, world!")
}
```Further documentation can be found at .
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
```