iof 0.5.0

Read from and write data to console or file in simple formats.
Documentation
1
2
3
4
5
6
7
8
9
use iof::show;
use std::collections::HashSet;

#[test]
fn show() {
    let set: HashSet<i32> = HashSet::from_iter([3, 2, 1]);

    show!(set);
}