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

https://github.com/iolanguage/lzo


https://github.com/iolanguage/lzo

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# LZO
The LZO object can be used to compress and uncompress data using the
Lempel-Ziv-Oberhumer (LZO)
lossless data compression algorithm.

Example use:
```Io
compressedData := LZO compress(uncompressedData)
uncompressedData := LZO uncompress(compressedData)
```

# Installation
```
eerie install https://github.com/IoLanguage/LZO.git
```