likh 0.1.2

library to read and write to text and CSV files.
Documentation

Likh

likh is library to read and write to text and CSV files.

Please review source code carefully before production usage.

Usage

  • Read a file
read_from_file("");

  • Write to a file
read_from_file("filename.txt","Hello!");

  • Read from a CSV
read_from_csv("filename.csv");

The output will be in the form of a 2d Vec -

vec![vec![1,2,3],vec![4,5,6]];

  • Read from a CSV
let c = vec![vec![1,2,3],vec![4,5,6]];

write_to_csv("filename.csv",c);