Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jagot/ioutils.jl
https://github.com/jagot/ioutils.jl
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jagot/ioutils.jl
- Owner: jagot
- License: mit
- Created: 2020-02-07T07:51:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-17T12:48:59.000Z (over 3 years ago)
- Last Synced: 2024-11-11T10:44:53.612Z (about 2 months ago)
- Language: Julia
- Size: 205 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IOUtils.jl
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://www.tipota.org/IOUtils.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://www.tipota.org/IOUtils.jl/dev)
[![Build Status](https://github.com/jagot/IOUtils.jl/workflows/CI/badge.svg)](https://github.com/jagot/IOUtils.jl/actions)
[![Coverage](https://codecov.io/gh/jagot/IOUtils.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/jagot/IOUtils.jl)A collection of simple helper functions for structured terminal
output, such as delimiters, indentations, and blocks.```julia
print_boxed(stdout) do io
println(io, "Hello")
println(io, "World")
end
``````
┌ Hello
└ World
```See the documentation for a complete list of available functions.
Pull requests with additional functionality and improvements welcome!