https://github.com/alexherbo2/fifo.cr
A Crystal library for using FIFOs
https://github.com/alexherbo2/fifo.cr
crystal library
Last synced: 12 months ago
JSON representation
A Crystal library for using FIFOs
- Host: GitHub
- URL: https://github.com/alexherbo2/fifo.cr
- Owner: alexherbo2
- License: unlicense
- Created: 2021-02-18T14:02:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-10-28T22:12:48.000Z (over 4 years ago)
- Last Synced: 2025-02-01T22:28:47.292Z (about 1 year ago)
- Topics: crystal, library
- Language: Crystal
- Homepage: https://crystal-lang.org
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
Awesome Lists containing this project
README
# fifo.cr
fifo.cr is a [Crystal] library for using [FIFOs][FIFO].
[Crystal]: https://crystal-lang.org
[FIFO]: https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics)
## Dependencies
- [Crystal]
## Installation
1. Add the dependency to your `shard.yml`:
``` yaml
dependencies:
fifo:
github: alexherbo2/fifo.cr
```
2. Run `shards install`.
## Usage
``` crystal
require "fifo"
```
See [`src/fifo.cr`] for a complete reference.
[`src/fifo.cr`]: src/fifo.cr