Likh

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

Please review source code carefully before production usage.

Usage

```rust readfromfile("filename.txt");

```

```rust readfromfile("filename.txt","Hello!");

```

rust read_from_csv("filename.csv");

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

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

```

```rust let c = vec![vec![1,2,3],vec![4,5,6]];

writetocsv("filename.csv",c); ```